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
d098b236
Commit
d098b236
authored
Jun 11, 2014
by
Noah Misch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in comments.
parent
a26ae56f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/catalog/namespace.c
src/backend/catalog/namespace.c
+2
-2
src/backend/port/win32/socket.c
src/backend/port/win32/socket.c
+1
-1
src/backend/utils/mb/encnames.c
src/backend/utils/mb/encnames.c
+1
-1
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+1
-1
No files found.
src/backend/catalog/namespace.c
View file @
d098b236
...
@@ -260,7 +260,7 @@ RangeVarGetRelidExtended(const RangeVar *relation, LOCKMODE lockmode,
...
@@ -260,7 +260,7 @@ RangeVarGetRelidExtended(const RangeVar *relation, LOCKMODE lockmode,
* with the answer changing under them, or that they already hold some
* with the answer changing under them, or that they already hold some
* appropriate lock, and therefore return the first answer we get without
* appropriate lock, and therefore return the first answer we get without
* checking for invalidation messages. Also, if the requested lock is
* checking for invalidation messages. Also, if the requested lock is
* already held,
no
LockRelationOid will not AcceptInvalidationMessages,
* already held, LockRelationOid will not AcceptInvalidationMessages,
* so we may fail to notice a change. We could protect against that case
* so we may fail to notice a change. We could protect against that case
* by calling AcceptInvalidationMessages() before beginning this loop, but
* by calling AcceptInvalidationMessages() before beginning this loop, but
* that would add a significant amount overhead, so for now we don't.
* that would add a significant amount overhead, so for now we don't.
...
@@ -502,7 +502,7 @@ RangeVarGetCreationNamespace(const RangeVar *newRelation)
...
@@ -502,7 +502,7 @@ RangeVarGetCreationNamespace(const RangeVar *newRelation)
* the same name which already exists in that namespace, or to InvalidOid if
* the same name which already exists in that namespace, or to InvalidOid if
* no such relation exists.
* no such relation exists.
*
*
* If lockmode != NoLock, the specified lock mode is acquire on the existing
* If lockmode != NoLock, the specified lock mode is acquire
d
on the existing
* relation, if any, provided that the current user owns the target relation.
* relation, if any, provided that the current user owns the target relation.
* However, if lockmode != NoLock and the user does not own the target
* However, if lockmode != NoLock and the user does not own the target
* relation, we throw an ERROR, as we must not try to lock relations the
* relation, we throw an ERROR, as we must not try to lock relations the
...
...
src/backend/port/win32/socket.c
View file @
d098b236
...
@@ -177,7 +177,7 @@ pgwin32_waitforsinglesocket(SOCKET s, int what, int timeout)
...
@@ -177,7 +177,7 @@ pgwin32_waitforsinglesocket(SOCKET s, int what, int timeout)
* Just a workaround of unknown locking problem with writing in UDP socket
* Just a workaround of unknown locking problem with writing in UDP socket
* under high load: Client's pgsql backend sleeps infinitely in
* under high load: Client's pgsql backend sleeps infinitely in
* WaitForMultipleObjectsEx, pgstat process sleeps in pgwin32_select().
* WaitForMultipleObjectsEx, pgstat process sleeps in pgwin32_select().
* So, we will wait with small timeout(0.1 sec) and if socke
c
t is still
* So, we will wait with small timeout(0.1 sec) and if socket is still
* blocked, try WSASend (see comments in pgwin32_select) and wait again.
* blocked, try WSASend (see comments in pgwin32_select) and wait again.
*/
*/
if
((
what
&
FD_WRITE
)
&&
isUDP
)
if
((
what
&
FD_WRITE
)
&&
isUDP
)
...
...
src/backend/utils/mb/encnames.c
View file @
d098b236
/*
/*
* Encoding names and routines for work with it. All
* Encoding names and routines for work with it. All
* in this file is shared be
d
ween FE and BE.
* in this file is shared be
t
ween FE and BE.
*
*
* src/backend/utils/mb/encnames.c
* src/backend/utils/mb/encnames.c
*/
*/
...
...
src/bin/pg_dump/pg_dump.c
View file @
d098b236
...
@@ -11332,7 +11332,7 @@ dumpCollation(Archive *fout, CollInfo *collinfo)
...
@@ -11332,7 +11332,7 @@ dumpCollation(Archive *fout, CollInfo *collinfo)
/* Make sure we are in proper schema */
/* Make sure we are in proper schema */
selectSourceSchema
(
fout
,
collinfo
->
dobj
.
namespace
->
dobj
.
name
);
selectSourceSchema
(
fout
,
collinfo
->
dobj
.
namespace
->
dobj
.
name
);
/* Get co
nvers
ion-specific details */
/* Get co
llat
ion-specific details */
appendPQExpBuffer
(
query
,
"SELECT "
appendPQExpBuffer
(
query
,
"SELECT "
"collcollate, "
"collcollate, "
"collctype "
"collctype "
...
...
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