1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Transaction log manager core code.

It doesn't work currently but also don't break anything -:)
This commit is contained in:
Vadim B. Mikheev
1999-09-27 15:48:12 +00:00
parent 2902c4c640
commit 30659d43eb
10 changed files with 1583 additions and 16 deletions

View File

@@ -4,7 +4,7 @@
# Makefile for access/transam
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.6 1998/04/06 00:21:52 momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.7 1999/09/27 15:47:37 vadim Exp $
#
#-------------------------------------------------------------------------
@@ -13,7 +13,7 @@ include ../../../Makefile.global
CFLAGS += -I../..
OBJS = transam.o transsup.o varsup.o xact.o xid.o
OBJS = transam.o transsup.o varsup.o xact.o xid.o xlog.o rmgr.o
all: SUBSYS.o

View File

@@ -0,0 +1,4 @@
#include "postgres.h"
#include "access/rmgr.h"
RmgrData *RmgrTable = NULL;

File diff suppressed because it is too large Load Diff