Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a030bfa6
Commit
a030bfa6
authored
Nov 04, 2011
by
Simon Riggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move user functions related to WAL into xlogfuncs.c
parent
e145891c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
499 additions
and
446 deletions
+499
-446
src/backend/access/transam/Makefile
src/backend/access/transam/Makefile
+2
-1
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+25
-445
src/backend/access/transam/xlogfuncs.c
src/backend/access/transam/xlogfuncs.c
+467
-0
src/include/access/xlog.h
src/include/access/xlog.h
+5
-0
No files found.
src/backend/access/transam/Makefile
View file @
a030bfa6
...
...
@@ -12,7 +12,8 @@ subdir = src/backend/access/transam
top_builddir
=
../../../..
include
$(top_builddir)/src/Makefile.global
OBJS
=
clog.o transam.o varsup.o xact.o xlog.o xlogutils.o rmgr.o slru.o subtrans.o multixact.o twophase.o twophase_rmgr.o
OBJS
=
clog.o transam.o varsup.o xact.o rmgr.o slru.o subtrans.o multixact.o
\
twophase.o twophase_rmgr.o xlog.o xlogfuncs.o xlogutils.o
include
$(top_srcdir)/src/backend/common.mk
...
...
src/backend/access/transam/xlog.c
View file @
a030bfa6
This diff is collapsed.
Click to expand it.
src/backend/access/transam/xlogfuncs.c
0 → 100644
View file @
a030bfa6
This diff is collapsed.
Click to expand it.
src/include/access/xlog.h
View file @
a030bfa6
...
...
@@ -293,6 +293,11 @@ extern bool XLogInsertAllowed(void);
extern
void
GetXLogReceiptTime
(
TimestampTz
*
rtime
,
bool
*
fromStream
);
extern
XLogRecPtr
GetXLogReplayRecPtr
(
XLogRecPtr
*
restoreLastRecPtr
);
extern
XLogRecPtr
GetStandbyFlushRecPtr
(
void
);
extern
XLogRecPtr
GetXLogInsertRecPtr
(
bool
needlock
);
extern
XLogRecPtr
GetXLogWriteRecPtr
(
void
);
extern
bool
RecoveryIsPaused
(
void
);
extern
void
SetRecoveryPause
(
bool
recoveryPause
);
extern
TimestampTz
GetLatestXTime
(
void
);
extern
void
UpdateControlFile
(
void
);
extern
uint64
GetSystemIdentifier
(
void
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment