Skip to content

Commit 30659d4

Browse files
committed
Transaction log manager core code.
It doesn't work currently but also don't break anything -:)
1 parent 2902c4c commit 30659d4

File tree

10 files changed

+1583
-16
lines changed

10 files changed

+1583
-16
lines changed

src/backend/access/transam/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/transam
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.6 1998/04/06 00:21:52 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.7 1999/09/27 15:47:37 vadim Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -13,7 +13,7 @@ include ../../../Makefile.global
1313

1414
CFLAGS += -I../..
1515

16-
OBJS = transam.o transsup.o varsup.o xact.o xid.o
16+
OBJS = transam.o transsup.o varsup.o xact.o xid.o xlog.o rmgr.o
1717

1818
all: SUBSYS.o
1919

src/backend/access/transam/rmgr.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#include "postgres.h"
2+
#include "access/rmgr.h"
3+
4+
RmgrData *RmgrTable = NULL;

0 commit comments

Comments
 (0)