summaryrefslogtreecommitdiff
path: root/src/backend/access/transam/Makefile
diff options
context:
space:
mode:
authorTeodor Sigaev2016-04-01 09:21:48 +0000
committerTeodor Sigaev2016-04-01 09:21:48 +0000
commit65578341af1ae50e52e0f45e691ce88ad5a1b9b1 (patch)
tree8449bb814debcbc2fdba25cb63c6f681decd3b0a /src/backend/access/transam/Makefile
parentc202ecf9023ac3571709c274b326038ae39e90a7 (diff)
Add Generic WAL interface
This interface is designed to give an access to WAL for extensions which could implement new access method, for example. Previously it was impossible because restoring from custom WAL would need to access system catalog to find a redo custom function. This patch suggests generic way to describe changes on page with standart layout. Bump XLOG_PAGE_MAGIC because of new record type. Author: Alexander Korotkov with a help of Petr Jelinek, Markus Nullmeier and minor editorization by my Reviewers: Petr Jelinek, Alvaro Herrera, Teodor Sigaev, Jim Nasby, Michael Paquier
Diffstat (limited to 'src/backend/access/transam/Makefile')
-rw-r--r--src/backend/access/transam/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/Makefile b/src/backend/access/transam/Makefile
index 94455b23f7e..16fbe47269a 100644
--- a/src/backend/access/transam/Makefile
+++ b/src/backend/access/transam/Makefile
@@ -12,8 +12,8 @@ subdir = src/backend/access/transam
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
-OBJS = clog.o commit_ts.o multixact.o parallel.o rmgr.o slru.o subtrans.o \
- timeline.o transam.o twophase.o twophase_rmgr.o varsup.o \
+OBJS = clog.o commit_ts.o generic_xlog.o multixact.o parallel.o rmgr.o slru.o \
+ subtrans.o timeline.o transam.o twophase.o twophase_rmgr.o varsup.o \
xact.o xlog.o xlogarchive.o xlogfuncs.o \
xloginsert.o xlogreader.o xlogutils.o