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
406a1a9e
Commit
406a1a9e
authored
Mar 05, 2014
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some typos introduced by the logical decoding patch.
Erik Rijkers
parent
97e899e1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/replication/logical/decode.c
src/backend/replication/logical/decode.c
+1
-1
src/backend/replication/logical/logical.c
src/backend/replication/logical/logical.c
+2
-2
src/backend/replication/logical/reorderbuffer.c
src/backend/replication/logical/reorderbuffer.c
+1
-1
src/backend/storage/ipc/procarray.c
src/backend/storage/ipc/procarray.c
+1
-1
No files found.
src/backend/replication/logical/decode.c
View file @
406a1a9e
...
@@ -497,7 +497,7 @@ DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
...
@@ -497,7 +497,7 @@ DecodeCommit(LogicalDecodingContext *ctx, XLogRecordBuffer *buf,
/* ----
/* ----
* Check whether we are interested in this specific transaction, and tell
* Check whether we are interested in this specific transaction, and tell
* the
the
reorderbuffer to forget the content of the (sub-)transactions
* the reorderbuffer to forget the content of the (sub-)transactions
* if not.
* if not.
*
*
* There basically two reasons we might not be interested in this
* There basically two reasons we might not be interested in this
...
...
src/backend/replication/logical/logical.c
View file @
406a1a9e
...
@@ -179,7 +179,7 @@ StartupDecodingContext(List *output_plugin_options,
...
@@ -179,7 +179,7 @@ StartupDecodingContext(List *output_plugin_options,
* perform the use-case dependent, actual, work.
* perform the use-case dependent, actual, work.
*
*
* Needs to be called while in a memory context that's at least as long lived
* Needs to be called while in a memory context that's at least as long lived
* as the
the
decoding context because further memory contexts will be created
* as the decoding context because further memory contexts will be created
* inside it.
* inside it.
*
*
* Returns an initialized decoding context after calling the output plugin's
* Returns an initialized decoding context after calling the output plugin's
...
@@ -334,7 +334,7 @@ CreateInitDecodingContext(char *plugin,
...
@@ -334,7 +334,7 @@ CreateInitDecodingContext(char *plugin,
* perform the use-case dependent, actual, work.
* perform the use-case dependent, actual, work.
*
*
* Needs to be called while in a memory context that's at least as long lived
* Needs to be called while in a memory context that's at least as long lived
* as the
the
decoding context because further memory contexts will be created
* as the decoding context because further memory contexts will be created
* inside it.
* inside it.
*
*
* Returns an initialized decoding context after calling the output plugin's
* Returns an initialized decoding context after calling the output plugin's
...
...
src/backend/replication/logical/reorderbuffer.c
View file @
406a1a9e
...
@@ -2741,7 +2741,7 @@ ReorderBufferToastReset(ReorderBuffer *rb, ReorderBufferTXN *txn)
...
@@ -2741,7 +2741,7 @@ ReorderBufferToastReset(ReorderBuffer *rb, ReorderBufferTXN *txn)
* * A tuple with a cmin but no cmax (and thus no combocid) got
* * A tuple with a cmin but no cmax (and thus no combocid) got
* deleted/updated in another transaction than the one which created it
* deleted/updated in another transaction than the one which created it
* which we are looking at right now. As only one of cmin, cmax or combocid
* which we are looking at right now. As only one of cmin, cmax or combocid
* is actually stored in the heap we don't have access to the
the
value we
* is actually stored in the heap we don't have access to the value we
* need anymore.
* need anymore.
*
*
* To resolve those problems we have a per-transaction hash of (cmin,
* To resolve those problems we have a per-transaction hash of (cmin,
...
...
src/backend/storage/ipc/procarray.c
View file @
406a1a9e
...
@@ -1948,7 +1948,7 @@ GetOldestSafeDecodingTransactionId(void)
...
@@ -1948,7 +1948,7 @@ GetOldestSafeDecodingTransactionId(void)
/*
/*
* Acquire XidGenLock, so no transactions can acquire an xid while we're
* Acquire XidGenLock, so no transactions can acquire an xid while we're
* running. If no transaction with xid were running concurrently a new xid
* running. If no transaction with xid were running concurrently a new xid
* could influence the
the
RecentXmin et al.
* could influence the RecentXmin et al.
*
*
* We initialize the computation to nextXid since that's guaranteed to be
* We initialize the computation to nextXid since that's guaranteed to be
* a safe, albeit pessimal, value.
* a safe, albeit pessimal, value.
...
...
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