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
9e945f86
Commit
9e945f86
authored
Jan 11, 2018
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Latin spelling
"c.f." should be "cf.".
parent
f50c80db
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
src/backend/catalog/catalog.c
src/backend/catalog/catalog.c
+1
-1
src/backend/optimizer/util/clauses.c
src/backend/optimizer/util/clauses.c
+1
-1
src/backend/replication/logical/origin.c
src/backend/replication/logical/origin.c
+1
-1
src/backend/replication/logical/reorderbuffer.c
src/backend/replication/logical/reorderbuffer.c
+2
-2
src/backend/replication/logical/snapbuild.c
src/backend/replication/logical/snapbuild.c
+1
-1
src/backend/storage/ipc/procarray.c
src/backend/storage/ipc/procarray.c
+1
-1
src/backend/utils/cache/relcache.c
src/backend/utils/cache/relcache.c
+1
-1
src/bin/psql/describe.c
src/bin/psql/describe.c
+1
-1
No files found.
src/backend/catalog/catalog.c
View file @
9e945f86
...
...
@@ -120,7 +120,7 @@ IsCatalogClass(Oid relid, Form_pg_class reltuple)
* this is noticeably cheaper and doesn't require catalog access.
*
* This test is safe since even an oid wraparound will preserve this
* property (c
.
f. GetNewObjectId()) and it has the advantage that it works
* property (cf. GetNewObjectId()) and it has the advantage that it works
* correctly even if a user decides to create a relation in the pg_catalog
* namespace.
* ----
...
...
src/backend/optimizer/util/clauses.c
View file @
9e945f86
...
...
@@ -1611,7 +1611,7 @@ contain_leaked_vars_walker(Node *node, void *context)
* WHERE CURRENT OF doesn't contain leaky function calls.
* Moreover, it is essential that this is considered non-leaky,
* since the planner must always generate a TID scan when CURRENT
* OF is present -- c
.
f. cost_tidscan.
* OF is present -- cf. cost_tidscan.
*/
return
false
;
...
...
src/backend/replication/logical/origin.c
View file @
9e945f86
...
...
@@ -60,7 +60,7 @@
* all our platforms, but it also simplifies memory ordering concerns
* between the remote and local lsn. We use a lwlock instead of a spinlock
* so it's less harmful to hold the lock over a WAL write
* (c
.
f. AdvanceReplicationProgress).
* (cf. AdvanceReplicationProgress).
*
* ---------------------------------------------------------------------------
*/
...
...
src/backend/replication/logical/reorderbuffer.c
View file @
9e945f86
...
...
@@ -15,7 +15,7 @@
* they are written to the WAL and is responsible to reassemble them into
* toplevel transaction sized pieces. When a transaction is completely
* reassembled - signalled by reading the transaction commit record - it
* will then call the output plugin (c
.
f. ReorderBufferCommit()) with the
* will then call the output plugin (cf. ReorderBufferCommit()) with the
* individual changes. The output plugins rely on snapshots built by
* snapbuild.c which hands them to us.
*
...
...
@@ -1752,7 +1752,7 @@ ReorderBufferForget(ReorderBuffer *rb, TransactionId xid, XLogRecPtr lsn)
/*
* Execute invalidations happening outside the context of a decoded
* transaction. That currently happens either for xid-less commits
* (c
.
f. RecordTransactionCommit()) or for invalidations in uninteresting
* (cf. RecordTransactionCommit()) or for invalidations in uninteresting
* transactions (via ReorderBufferForget()).
*/
void
...
...
src/backend/replication/logical/snapbuild.c
View file @
9e945f86
...
...
@@ -42,7 +42,7 @@
* catalog in a transaction. During normal operation this is achieved by using
* CommandIds/cmin/cmax. The problem with that however is that for space
* efficiency reasons only one value of that is stored
* (c
.
f. combocid.c). Since ComboCids are only available in memory we log
* (cf. combocid.c). Since ComboCids are only available in memory we log
* additional information which allows us to get the original (cmin, cmax)
* pair during visibility checks. Check the reorderbuffer.c's comment above
* ResolveCminCmaxDuringDecoding() for details.
...
...
src/backend/storage/ipc/procarray.c
View file @
9e945f86
...
...
@@ -820,7 +820,7 @@ ProcArrayApplyRecoveryInfo(RunningTransactions running)
/*
* latestObservedXid is at least set to the point where SUBTRANS was
* started up to (c
.
f. ProcArrayInitRecovery()) or to the biggest xid
* started up to (cf. ProcArrayInitRecovery()) or to the biggest xid
* RecordKnownAssignedTransactionIds() was called for. Initialize
* subtrans from thereon, up to nextXid - 1.
*
...
...
src/backend/utils/cache/relcache.c
View file @
9e945f86
...
...
@@ -2511,7 +2511,7 @@ RelationClearRelation(Relation relation, bool rebuild)
/*
* This shouldn't happen as dropping a relation is intended to be
* impossible if still referenced (c
.
f. CheckTableNotInUse()). But
* impossible if still referenced (cf. CheckTableNotInUse()). But
* if we get here anyway, we can't just delete the relcache entry,
* as it possibly could get accessed later (as e.g. the error
* might get trapped and handled via a subtransaction rollback).
...
...
src/bin/psql/describe.c
View file @
9e945f86
...
...
@@ -1722,7 +1722,7 @@ describeOneTableDetails(const char *schemaname,
/*
* In 9.0+, we have column comments for: relations, views, composite
* types, and foreign tables (c
.
f. CommentObject() in comment.c).
* types, and foreign tables (cf. CommentObject() in comment.c).
*/
if
(
tableinfo
.
relkind
==
RELKIND_RELATION
||
tableinfo
.
relkind
==
RELKIND_VIEW
||
...
...
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