mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
fixes things so that it works for cases where nested removals are possible. The overhead of the optimization should be significantly less, as well.
18 lines
573 B
Makefile
18 lines
573 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for optimizer/plan
|
|
#
|
|
# IDENTIFICATION
|
|
# $PostgreSQL: pgsql/src/backend/optimizer/plan/Makefile,v 1.16 2010/03/28 22:59:32 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/optimizer/plan
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = analyzejoins.o createplan.o initsplan.o planagg.o planmain.o planner.o \
|
|
setrefs.o subselect.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|