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
7e8db2dc
Commit
7e8db2dc
authored
Mar 04, 2014
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor corrections to logical decoding patch.
parent
7558cc95
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/replication/logical/logical.c
src/backend/replication/logical/logical.c
+1
-1
src/backend/replication/logical/logicalfuncs.c
src/backend/replication/logical/logicalfuncs.c
+2
-2
src/include/utils/snapshot.h
src/include/utils/snapshot.h
+1
-1
No files found.
src/backend/replication/logical/logical.c
View file @
7e8db2dc
...
...
@@ -9,7 +9,7 @@
*
* NOTES
* This file coordinates interaction between the various modules that
* together provide
the
logical decoding, primarily by providing so
* together provide logical decoding, primarily by providing so
* called LogicalDecodingContexts. The goal is to encapsulate most of the
* internal complexity for consumers of logical decoding, so they can
* create and consume a changestream with a low amount of code.
...
...
src/backend/replication/logical/logicalfuncs.c
View file @
7e8db2dc
...
...
@@ -2,7 +2,7 @@
*
* logicalfuncs.c
*
* Support functions for using logical decoding and managemnt of
* Support functions for using logical decoding and managem
e
nt of
* logical replication slots via SQL.
*
*
...
...
@@ -400,7 +400,7 @@ pg_logical_slot_get_changes_guts(FunctionCallInfo fcinfo, bool confirm, bool bin
ctx
->
options
.
output_type
!=
OUTPUT_PLUGIN_TEXTUAL_OUTPUT
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_FEATURE_NOT_SUPPORTED
),
errmsg
(
"output plugin cannot produce
text
output"
)));
errmsg
(
"output plugin cannot produce
binary
output"
)));
ctx
->
output_writer_private
=
p
;
...
...
src/include/utils/snapshot.h
View file @
7e8db2dc
...
...
@@ -36,7 +36,7 @@ typedef bool (*SnapshotSatisfiesFunc) (HeapTuple htup,
* There are several different kinds of snapshots:
* * Normal MVCC snapshots
* * MVCC snapshots taken during recovery (in Hot-Standby mode)
* * Historic MVCC snapshots used during logical decoding
* * Historic MVCC snapshots used during logical decoding
* * snapshots passed to HeapTupleSatisfiesDirty()
* * snapshots used for SatisfiesAny, Toast, Self where no members are
* accessed.
...
...
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