mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
Along the way, allow FOR UPDATE in non-WITH-HOLD cursors; there may once have been a reason to disallow that, but it seems to work now, and it's really rather necessary if you want to select a row via a cursor and then update it in a concurrent-safe fashion. Original patch by Arul Shaji, rather heavily editorialized by Tom Lane.
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for executor
|
|
#
|
|
# IDENTIFICATION
|
|
# $PostgreSQL: pgsql/src/backend/executor/Makefile,v 1.26 2007/06/11 01:16:22 tgl Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/executor
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = execAmi.o execCurrent.o execGrouping.o execJunk.o execMain.o \
|
|
execProcnode.o execQual.o execScan.o execTuples.o \
|
|
execUtils.o functions.o instrument.o nodeAppend.o nodeAgg.o \
|
|
nodeBitmapAnd.o nodeBitmapOr.o \
|
|
nodeBitmapHeapscan.o nodeBitmapIndexscan.o nodeHash.o \
|
|
nodeHashjoin.o nodeIndexscan.o nodeMaterial.o nodeMergejoin.o \
|
|
nodeNestloop.o nodeFunctionscan.o nodeResult.o nodeSeqscan.o \
|
|
nodeSetOp.o nodeSort.o nodeUnique.o \
|
|
nodeValuesscan.o nodeLimit.o nodeGroup.o \
|
|
nodeSubplan.o nodeSubqueryscan.o nodeTidscan.o tstoreReceiver.o spi.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
|
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|