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
31ba62ce
Commit
31ba62ce
authored
Oct 22, 2015
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in comments.
CharSyam
parent
8f2977b3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
src/backend/access/transam/multixact.c
src/backend/access/transam/multixact.c
+1
-1
src/backend/access/transam/parallel.c
src/backend/access/transam/parallel.c
+1
-1
src/backend/executor/nodeGather.c
src/backend/executor/nodeGather.c
+1
-1
src/backend/parser/parse_utilcmd.c
src/backend/parser/parse_utilcmd.c
+1
-1
No files found.
src/backend/access/transam/multixact.c
View file @
31ba62ce
...
...
@@ -1126,7 +1126,7 @@ GetNewMultiXactId(int nmembers, MultiXactOffset *offset)
/*
* To avoid swamping the postmaster with signals, we issue the autovac
* request only when crossing a segment boundary. With default
* compilation settings that's rougly after 50k members. This still
* compilation settings that's roug
h
ly after 50k members. This still
* gives plenty of chances before we get into real trouble.
*/
if
((
MXOffsetToMemberPage
(
nextOffset
)
/
SLRU_PAGES_PER_SEGMENT
)
!=
...
...
src/backend/access/transam/parallel.c
View file @
31ba62ce
...
...
@@ -775,7 +775,7 @@ HandleParallelMessage(ParallelContext *pcxt, int i, StringInfo msg)
errctx
.
previous
=
pcxt
->
error_context_stack
;
error_context_stack
=
&
errctx
;
/* Parse ErrorReponse or NoticeResponse. */
/* Parse ErrorRe
s
ponse or NoticeResponse. */
pq_parse_errornotice
(
msg
,
&
edata
);
/* Death of a worker isn't enough justification for suicide. */
...
...
src/backend/executor/nodeGather.c
View file @
31ba62ce
...
...
@@ -193,7 +193,7 @@ ExecEndGather(GatherState *node)
* gather_getnext
*
* Get the next tuple from shared memory queue. This function
* is reponsible for fetching tuples from all the queues associated
* is re
s
ponsible for fetching tuples from all the queues associated
* with worker backends used in Gather node execution and if there is
* no data available from queues or no worker is available, it does
* fetch the data from local node.
...
...
src/backend/parser/parse_utilcmd.c
View file @
31ba62ce
...
...
@@ -282,7 +282,7 @@ transformCreateStmt(CreateStmt *stmt, const char *queryString)
if
(
like_found
)
{
/*
* To match INHERITS, the exist
a
nce of any LIKE table with OIDs
* To match INHERITS, the exist
e
nce of any LIKE table with OIDs
* causes the new table to have oids. For the same reason,
* WITH/WITHOUT OIDs is also ignored with LIKE. We prepend
* because the first oid option list entry is honored. Our
...
...
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