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
09ae3299
Commit
09ae3299
authored
May 14, 2021
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message style improvements
parent
521d08a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+2
-2
src/bin/pg_rewind/pg_rewind.c
src/bin/pg_rewind/pg_rewind.c
+1
-1
src/interfaces/ecpg/preproc/ecpg.trailer
src/interfaces/ecpg/preproc/ecpg.trailer
+1
-1
No files found.
src/bin/pg_dump/pg_dump.c
View file @
09ae3299
...
@@ -1070,7 +1070,7 @@ help(const char *progname)
...
@@ -1070,7 +1070,7 @@ help(const char *progname)
printf
(
_
(
" --no-subscriptions do not dump subscriptions
\n
"
));
printf
(
_
(
" --no-subscriptions do not dump subscriptions
\n
"
));
printf
(
_
(
" --no-synchronized-snapshots do not use synchronized snapshots in parallel jobs
\n
"
));
printf
(
_
(
" --no-synchronized-snapshots do not use synchronized snapshots in parallel jobs
\n
"
));
printf
(
_
(
" --no-tablespaces do not dump tablespace assignments
\n
"
));
printf
(
_
(
" --no-tablespaces do not dump tablespace assignments
\n
"
));
printf
(
_
(
" --no-toast-compression do not dump
toast
compression methods
\n
"
));
printf
(
_
(
" --no-toast-compression do not dump
TOAST
compression methods
\n
"
));
printf
(
_
(
" --no-unlogged-table-data do not dump unlogged table data
\n
"
));
printf
(
_
(
" --no-unlogged-table-data do not dump unlogged table data
\n
"
));
printf
(
_
(
" --on-conflict-do-nothing add ON CONFLICT DO NOTHING to INSERT commands
\n
"
));
printf
(
_
(
" --on-conflict-do-nothing add ON CONFLICT DO NOTHING to INSERT commands
\n
"
));
printf
(
_
(
" --quote-all-identifiers quote all identifiers, even if not key words
\n
"
));
printf
(
_
(
" --quote-all-identifiers quote all identifiers, even if not key words
\n
"
));
...
@@ -16758,7 +16758,7 @@ dumpIndex(Archive *fout, const IndxInfo *indxinfo)
...
@@ -16758,7 +16758,7 @@ dumpIndex(Archive *fout, const IndxInfo *indxinfo)
if
(
!
parsePGArray
(
indstatvals
,
&
indstatvalsarray
,
&
nstatvals
))
if
(
!
parsePGArray
(
indstatvals
,
&
indstatvalsarray
,
&
nstatvals
))
fatal
(
"could not parse index statistic values"
);
fatal
(
"could not parse index statistic values"
);
if
(
nstatcols
!=
nstatvals
)
if
(
nstatcols
!=
nstatvals
)
fatal
(
"mismatched number of columns and values for index stats"
);
fatal
(
"mismatched number of columns and values for index stat
istic
s"
);
for
(
j
=
0
;
j
<
nstatcols
;
j
++
)
for
(
j
=
0
;
j
<
nstatcols
;
j
++
)
{
{
...
...
src/bin/pg_rewind/pg_rewind.c
View file @
09ae3299
...
@@ -561,7 +561,7 @@ perform_rewind(filemap_t *filemap, rewind_source *source,
...
@@ -561,7 +561,7 @@ perform_rewind(filemap_t *filemap, rewind_source *source,
break
;
break
;
case
FILE_ACTION_UNDECIDED
:
case
FILE_ACTION_UNDECIDED
:
pg_fatal
(
"no action decided for
\"
%s
\"
"
,
entry
->
path
);
pg_fatal
(
"no action decided for
file
\"
%s
\"
"
,
entry
->
path
);
break
;
break
;
}
}
}
}
...
...
src/interfaces/ecpg/preproc/ecpg.trailer
View file @
09ae3299
...
@@ -302,7 +302,7 @@ ECPGDeclareStmt: DECLARE prepared_name STATEMENT
...
@@ -302,7 +302,7 @@ ECPGDeclareStmt: DECLARE prepared_name STATEMENT
if (strcmp($2, ptr->name) == 0)
if (strcmp($2, ptr->name) == 0)
{
{
/* re-definition is not allowed */
/* re-definition is not allowed */
mmerror(PARSE_ERROR, ET_ERROR, "
declared name %s is already defin
ed", ptr->name);
mmerror(PARSE_ERROR, ET_ERROR, "
name \"%s\" is already declar
ed", ptr->name);
}
}
}
}
...
...
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