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
d29a2ee3
Commit
d29a2ee3
authored
Apr 13, 2009
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make new strings more alike previously existing messages.
parent
15aa0252
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/bin/pg_dump/pg_restore.c
src/bin/pg_dump/pg_restore.c
+3
-3
No files found.
src/bin/pg_dump/pg_restore.c
View file @
d29a2ee3
...
...
@@ -34,7 +34,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.9
7 2009/04/05 04:19:58 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.9
8 2009/04/13 21:03:36 alvherre
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -304,7 +304,7 @@ main(int argc, char **argv)
{
if
(
opts
->
filename
)
{
fprintf
(
stderr
,
_
(
"%s:
cannot specify both -d and -f output
\n
"
),
fprintf
(
stderr
,
_
(
"%s:
options -d/--dbname and -f/--file cannot be used together
\n
"
),
progname
);
fprintf
(
stderr
,
_
(
"Try
\"
%s --help
\"
for more information.
\n
"
),
progname
);
...
...
@@ -316,7 +316,7 @@ main(int argc, char **argv)
/* Can't do single-txn mode with multiple connections */
if
(
opts
->
single_txn
&&
opts
->
number_of_jobs
>
1
)
{
fprintf
(
stderr
,
_
(
"%s:
cannot specify both --single-transaction and multiple jobs
\n
"
),
fprintf
(
stderr
,
_
(
"%s:
options -1/--single-transaction and -j/--jobs cannot be used together
\n
"
),
progname
);
exit
(
1
);
}
...
...
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