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
f25e0bf5
Commit
f25e0bf5
authored
Aug 09, 2014
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small message fixes
parent
3dad73e7
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
13 deletions
+13
-13
src/bin/initdb/initdb.c
src/bin/initdb/initdb.c
+1
-1
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_basebackup.c
+2
-2
src/bin/pg_dump/pg_backup_tar.c
src/bin/pg_dump/pg_backup_tar.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/pg_restore.c
src/bin/pg_dump/pg_restore.c
+1
-1
src/bin/pg_resetxlog/pg_resetxlog.c
src/bin/pg_resetxlog/pg_resetxlog.c
+1
-1
src/bin/psql/command.c
src/bin/psql/command.c
+1
-1
src/common/username.c
src/common/username.c
+1
-1
src/pl/plpgsql/src/pl_handler.c
src/pl/plpgsql/src/pl_handler.c
+3
-3
No files found.
src/bin/initdb/initdb.c
View file @
f25e0bf5
...
...
@@ -2548,7 +2548,7 @@ check_locale_name(int category, const char *locale, char **canonname)
save
=
setlocale
(
category
,
NULL
);
if
(
!
save
)
{
fprintf
(
stderr
,
_
(
"%s: setlocale failed
\n
"
),
fprintf
(
stderr
,
_
(
"%s: setlocale
()
failed
\n
"
),
progname
);
exit
(
1
);
}
...
...
src/bin/pg_basebackup/pg_basebackup.c
View file @
f25e0bf5
...
...
@@ -1123,13 +1123,13 @@ update_tablespace_symlink(Oid oid, const char *old_dir)
if
(
unlink
(
linkloc
)
!=
0
&&
errno
!=
ENOENT
)
{
fprintf
(
stderr
,
_
(
"%s: could not remove symbolic link
\"
%s
\"
: %s"
),
fprintf
(
stderr
,
_
(
"%s: could not remove symbolic link
\"
%s
\"
: %s
\n
"
),
progname
,
linkloc
,
strerror
(
errno
));
disconnect_and_exit
(
1
);
}
if
(
symlink
(
new_dir
,
linkloc
)
!=
0
)
{
fprintf
(
stderr
,
_
(
"%s: could not create symbolic link
\"
%s
\"
: %s"
),
fprintf
(
stderr
,
_
(
"%s: could not create symbolic link
\"
%s
\"
: %s
\n
"
),
progname
,
linkloc
,
strerror
(
errno
));
disconnect_and_exit
(
1
);
}
...
...
src/bin/pg_dump/pg_backup_tar.c
View file @
f25e0bf5
...
...
@@ -1083,7 +1083,7 @@ _tarAddFile(ArchiveHandle *AH, TAR_MEMBER *th)
fseeko
(
tmp
,
0
,
SEEK_END
);
th
->
fileLen
=
ftello
(
tmp
);
if
(
th
->
fileLen
<
0
)
exit_horribly
(
modulename
,
"could not determine seek position in file: %s
\n
"
,
exit_horribly
(
modulename
,
"could not determine seek position in
archive
file: %s
\n
"
,
strerror
(
errno
));
fseeko
(
tmp
,
0
,
SEEK_SET
);
...
...
src/bin/pg_dump/pg_dump.c
View file @
f25e0bf5
...
...
@@ -582,7 +582,7 @@ main(int argc, char **argv)
}
if
(
if_exists
&&
!
outputClean
)
exit_horribly
(
NULL
,
"option --if-exists requires
-c/--clean optio
n
\n
"
);
exit_horribly
(
NULL
,
"option --if-exists requires
option -c/--clea
n
\n
"
);
/* Identify archive format to emit */
archiveFormat
=
parseArchiveFormat
(
format
,
&
archiveMode
);
...
...
src/bin/pg_dump/pg_dumpall.c
View file @
f25e0bf5
...
...
@@ -338,7 +338,7 @@ main(int argc, char *argv[])
if
(
if_exists
&&
!
output_clean
)
{
fprintf
(
stderr
,
_
(
"%s: option --if-exists requires
-c/--clean optio
n
\n
"
),
fprintf
(
stderr
,
_
(
"%s: option --if-exists requires
option -c/--clea
n
\n
"
),
progname
);
exit_nicely
(
1
);
}
...
...
src/bin/pg_dump/pg_restore.c
View file @
f25e0bf5
...
...
@@ -340,7 +340,7 @@ main(int argc, char **argv)
if
(
if_exists
&&
!
opts
->
dropSchema
)
{
fprintf
(
stderr
,
_
(
"%s: option --if-exists requires
-c/--clean optio
n
\n
"
),
fprintf
(
stderr
,
_
(
"%s: option --if-exists requires
option -c/--clea
n
\n
"
),
progname
);
exit_nicely
(
1
);
}
...
...
src/bin/pg_resetxlog/pg_resetxlog.c
View file @
f25e0bf5
...
...
@@ -683,7 +683,7 @@ PrintNewControlValues()
if
(
set_xid_epoch
!=
-
1
)
{
printf
(
_
(
"NextXID
E
poch: %u
\n
"
),
printf
(
_
(
"NextXID
e
poch: %u
\n
"
),
ControlFile
.
checkPointCopy
.
nextXidEpoch
);
}
}
...
...
src/bin/psql/command.c
View file @
f25e0bf5
...
...
@@ -2509,7 +2509,7 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
if
(
popt
->
topt
.
default_footer
)
printf
(
_
(
"Default footer (%s) is on.
\n
"
),
param
);
else
printf
(
_
(
"Default footer (%s) is off."
),
param
);
printf
(
_
(
"Default footer (%s) is off.
\n
"
),
param
);
}
/* show format */
...
...
src/common/username.c
View file @
f25e0bf5
...
...
@@ -42,7 +42,7 @@ get_user_name(char **errstr)
pw
=
getpwuid
(
user_id
);
if
(
!
pw
)
{
*
errstr
=
psprintf
(
_
(
"
failed to look up effective user id
%ld: %s"
),
*
errstr
=
psprintf
(
_
(
"
could not look up effective user ID
%ld: %s"
),
(
long
)
user_id
,
errno
?
strerror
(
errno
)
:
_
(
"user does not exist"
));
return
NULL
;
...
...
src/pl/plpgsql/src/pl_handler.c
View file @
f25e0bf5
...
...
@@ -153,7 +153,7 @@ _PG_init(void)
NULL
,
NULL
,
NULL
);
DefineCustomBoolVariable
(
"plpgsql.print_strict_params"
,
gettext_noop
(
"Print information about parameters in the DETAIL part of the error messages generated on INTO .. STRICT failures."
),
gettext_noop
(
"Print information about parameters in the DETAIL part of the error messages generated on INTO ..
.
STRICT failures."
),
NULL
,
&
plpgsql_print_strict_params
,
false
,
...
...
@@ -161,7 +161,7 @@ _PG_init(void)
NULL
,
NULL
,
NULL
);
DefineCustomStringVariable
(
"plpgsql.extra_warnings"
,
gettext_noop
(
"List of programming constructs
which
should produce a warning."
),
gettext_noop
(
"List of programming constructs
that
should produce a warning."
),
NULL
,
&
plpgsql_extra_warnings_string
,
"none"
,
...
...
@@ -171,7 +171,7 @@ _PG_init(void)
NULL
);
DefineCustomStringVariable
(
"plpgsql.extra_errors"
,
gettext_noop
(
"List of programming constructs
which
should produce an error."
),
gettext_noop
(
"List of programming constructs
that
should produce an error."
),
NULL
,
&
plpgsql_extra_errors_string
,
"none"
,
...
...
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