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
48658a1b
Commit
48658a1b
authored
Apr 22, 2012
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some typos
Josh Kupershmidt
parent
33e99153
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
contrib/unaccent/unaccent.c
contrib/unaccent/unaccent.c
+1
-1
src/backend/access/transam/README
src/backend/access/transam/README
+1
-1
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+1
-1
No files found.
contrib/unaccent/unaccent.c
View file @
48658a1b
...
...
@@ -281,7 +281,7 @@ unaccent_lexize(PG_FUNCTION_ARGS)
{
if
(
!
res
)
{
/* allocate res only i
t
it's needed */
/* allocate res only i
f
it's needed */
res
=
palloc0
(
sizeof
(
TSLexeme
)
*
2
);
res
->
lexeme
=
trgchar
=
palloc
(
len
*
pg_database_encoding_max_length
()
+
1
/* \0 */
);
res
->
flags
=
TSL_FILTER
;
...
...
src/backend/access/transam/README
View file @
48658a1b
...
...
@@ -197,7 +197,7 @@ If a subtransaction requires an XID, we always first assign one to its
parent. This maintains the invariant that child transactions have XIDs later
than their parents, which is assumed in a number of places.
The subsidiary actions of obtaining a lock on the XID and
and
entering it into
The subsidiary actions of obtaining a lock on the XID and entering it into
pg_subtrans and PG_PROC are done at the time it is assigned.
A transaction that has no XID still needs to be identified for various
...
...
src/backend/postmaster/postmaster.c
View file @
48658a1b
...
...
@@ -2506,7 +2506,7 @@ reaper(SIGNAL_ARGS)
* Was it the archiver? If so, just try to start a new one; no need
* to force reset of the rest of the system. (If fail, we'll try
* again in future cycles of the main loop.). Unless we were waiting
* for it to shut down; don't restart it in that case, and
and
* for it to shut down; don't restart it in that case, and
* PostmasterStateMachine() will advance to the next shutdown step.
*/
if
(
pid
==
PgArchPID
)
...
...
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