summaryrefslogtreecommitdiff
path: root/src/backend/utils/time/Makefile
diff options
context:
space:
mode:
authorAlvaro Herrera2008-03-26 16:20:48 +0000
committerAlvaro Herrera2008-03-26 16:20:48 +0000
commitd43b085d578148f8dec2fea774912103e2f3044f (patch)
tree1be5ecca422dfe036fe9624355b4c952e7a8bc61 /src/backend/utils/time/Makefile
parent2d7705e85e22c8798fe70234aed8161ed84fdaa8 (diff)
Separate snapshot management code from tuple visibility code, create a
snapmgmt.c file for the former. The header files have also been reorganized in three parts: the most basic snapshot definitions are now in a new file snapshot.h, and the also new snapmgmt.h keeps the definitions for snapmgmt.c. tqual.h has been reduced to the bare minimum. This patch is just a first step towards managing live snapshots within a transaction; there is no functionality change. Per my proposal to pgsql-patches on [email protected] and subsequent discussion.
Diffstat (limited to 'src/backend/utils/time/Makefile')
-rw-r--r--src/backend/utils/time/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/time/Makefile b/src/backend/utils/time/Makefile
index 5e886d425e0..68b13e4c390 100644
--- a/src/backend/utils/time/Makefile
+++ b/src/backend/utils/time/Makefile
@@ -4,7 +4,7 @@
# Makefile for utils/time
#
# IDENTIFICATION
-# $PostgreSQL: pgsql/src/backend/utils/time/Makefile,v 1.13 2008/02/19 10:30:09 petere Exp $
+# $PostgreSQL: pgsql/src/backend/utils/time/Makefile,v 1.14 2008/03/26 16:20:47 alvherre Exp $
#
#-------------------------------------------------------------------------
@@ -12,6 +12,6 @@ subdir = src/backend/utils/time
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
-OBJS = combocid.o tqual.o
+OBJS = combocid.o tqual.o snapmgmt.o
include $(top_srcdir)/src/backend/common.mk