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
1b29e990
Commit
1b29e990
authored
Jul 01, 2019
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing serial commas
parent
c74d49d4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/catalog/pg_proc.c
src/backend/catalog/pg_proc.c
+1
-1
src/bin/pg_checksums/pg_checksums.c
src/bin/pg_checksums/pg_checksums.c
+1
-1
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+1
-1
src/bin/pg_dump/pg_dumpall.c
src/bin/pg_dump/pg_dumpall.c
+1
-1
src/bin/pg_dump/t/001_basic.pl
src/bin/pg_dump/t/001_basic.pl
+1
-1
No files found.
src/backend/catalog/pg_proc.c
View file @
1b29e990
...
@@ -425,7 +425,7 @@ ProcedureCreate(const char *procedureName,
...
@@ -425,7 +425,7 @@ ProcedureCreate(const char *procedureName,
:
errmsg
(
"cannot change return type of existing function"
),
:
errmsg
(
"cannot change return type of existing function"
),
/*
/*
* translator: first %s is DROP FUNCTION, DROP PROCEDURE or DROP
* translator: first %s is DROP FUNCTION, DROP PROCEDURE
,
or DROP
* AGGREGATE
* AGGREGATE
*/
*/
errhint
(
"Use %s %s first."
,
errhint
(
"Use %s %s first."
,
...
...
src/bin/pg_checksums/pg_checksums.c
View file @
1b29e990
...
@@ -72,7 +72,7 @@ static pg_time_t last_progress_report = 0;
...
@@ -72,7 +72,7 @@ static pg_time_t last_progress_report = 0;
static
void
static
void
usage
(
void
)
usage
(
void
)
{
{
printf
(
_
(
"%s enables, disables or verifies data checksums in a PostgreSQL database cluster.
\n\n
"
),
progname
);
printf
(
_
(
"%s enables, disables
,
or verifies data checksums in a PostgreSQL database cluster.
\n\n
"
),
progname
);
printf
(
_
(
"Usage:
\n
"
));
printf
(
_
(
"Usage:
\n
"
));
printf
(
_
(
" %s [OPTION]... [DATADIR]
\n
"
),
progname
);
printf
(
_
(
" %s [OPTION]... [DATADIR]
\n
"
),
progname
);
printf
(
_
(
"
\n
Options:
\n
"
));
printf
(
_
(
"
\n
Options:
\n
"
));
...
...
src/bin/pg_dump/pg_dump.c
View file @
1b29e990
...
@@ -662,7 +662,7 @@ main(int argc, char **argv)
...
@@ -662,7 +662,7 @@ main(int argc, char **argv)
* --rows-per-insert were specified.
* --rows-per-insert were specified.
*/
*/
if
(
dopt
.
do_nothing
&&
dopt
.
dump_inserts
==
0
)
if
(
dopt
.
do_nothing
&&
dopt
.
dump_inserts
==
0
)
fatal
(
"option --on-conflict-do-nothing requires option --inserts, --rows-per-insert or --column-inserts"
);
fatal
(
"option --on-conflict-do-nothing requires option --inserts, --rows-per-insert
,
or --column-inserts"
);
/* Identify archive format to emit */
/* Identify archive format to emit */
archiveFormat
=
parseArchiveFormat
(
format
,
&
archiveMode
);
archiveFormat
=
parseArchiveFormat
(
format
,
&
archiveMode
);
...
...
src/bin/pg_dump/pg_dumpall.c
View file @
1b29e990
...
@@ -354,7 +354,7 @@ main(int argc, char *argv[])
...
@@ -354,7 +354,7 @@ main(int argc, char *argv[])
if
(
database_exclude_patterns
.
head
!=
NULL
&&
if
(
database_exclude_patterns
.
head
!=
NULL
&&
(
globals_only
||
roles_only
||
tablespaces_only
))
(
globals_only
||
roles_only
||
tablespaces_only
))
{
{
pg_log_error
(
"option --exclude-database cannot be used together with -g/--globals-only, -r/--roles-only or -t/--tablespaces-only"
);
pg_log_error
(
"option --exclude-database cannot be used together with -g/--globals-only, -r/--roles-only
,
or -t/--tablespaces-only"
);
fprintf
(
stderr
,
_
(
"Try
\"
%s --help
\"
for more information.
\n
"
),
fprintf
(
stderr
,
_
(
"Try
\"
%s --help
\"
for more information.
\n
"
),
progname
);
progname
);
exit_nicely
(
1
);
exit_nicely
(
1
);
...
...
src/bin/pg_dump/t/001_basic.pl
View file @
1b29e990
...
@@ -123,7 +123,7 @@ command_fails_like(
...
@@ -123,7 +123,7 @@ command_fails_like(
command_fails_like
(
command_fails_like
(
[
'
pg_dump
',
'
--on-conflict-do-nothing
'
],
[
'
pg_dump
',
'
--on-conflict-do-nothing
'
],
qr/pg_dump: error: option --on-conflict-do-nothing requires option --inserts, --rows-per-insert or --column-inserts/
,
qr/pg_dump: error: option --on-conflict-do-nothing requires option --inserts, --rows-per-insert
,
or --column-inserts/
,
'
pg_dump: --on-conflict-do-nothing requires --inserts, --rows-per-insert, --column-inserts
'
'
pg_dump: --on-conflict-do-nothing requires --inserts, --rows-per-insert, --column-inserts
'
);
);
...
...
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