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
f05c6509
Commit
f05c6509
authored
Jul 08, 2011
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message style improvements
parent
c59b8ba6
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
14 deletions
+14
-14
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+1
-1
src/backend/commands/alter.c
src/backend/commands/alter.c
+1
-1
src/backend/replication/basebackup.c
src/backend/replication/basebackup.c
+2
-2
src/backend/replication/walsender.c
src/backend/replication/walsender.c
+2
-2
src/backend/utils/adt/varlena.c
src/backend/utils/adt/varlena.c
+2
-2
src/test/regress/expected/text.out
src/test/regress/expected/text.out
+6
-6
No files found.
doc/src/sgml/func.sgml
View file @
f05c6509
...
...
@@ -1523,7 +1523,7 @@
<entry><type>
text
</type></entry>
<entry>
Format a string. This function is similar to the C function
<function>
sprintf
</>
; but only the following conversions
<function>
sprintf
</>
; but only the following conversion
specification
s
are recognized:
<literal>
%s
</literal>
interpolates the corresponding
argument as a string;
<literal>
%I
</literal>
escapes its argument as
an SQL identifier;
<literal>
%L
</literal>
escapes its argument as an
...
...
src/backend/commands/alter.c
View file @
f05c6509
...
...
@@ -421,7 +421,7 @@ AlterObjectNamespace(Relation rel, int oidCacheId, int nameCacheId,
if
(
Anum_owner
<=
0
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INSUFFICIENT_PRIVILEGE
),
(
errmsg
(
"must be superuser to
SET SCHEMA
of %s"
,
(
errmsg
(
"must be superuser to
set schema
of %s"
,
getObjectDescriptionOids
(
classId
,
objid
)))));
/* Otherwise, must be owner of the existing object */
...
...
src/backend/replication/basebackup.c
View file @
f05c6509
...
...
@@ -119,7 +119,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
if
(
readlink
(
fullpath
,
linkpath
,
sizeof
(
linkpath
)
-
1
)
==
-
1
)
{
ereport
(
WARNING
,
(
errmsg
(
"
unable to read symbolic link %s
: %m"
,
fullpath
)));
(
errmsg
(
"
could not read symbolic link
\"
%s
\"
: %m"
,
fullpath
)));
continue
;
}
...
...
@@ -363,7 +363,7 @@ SendBaseBackup(BaseBackupCmd *cmd)
dir
=
AllocateDir
(
"pg_tblspc"
);
if
(
!
dir
)
ereport
(
ERROR
,
(
errmsg
(
"
unable to open directory pg_tblspc
: %m"
)));
(
errmsg
(
"
could not open directory
\"
pg_tblspc
\"
: %m"
)));
perform_base_backup
(
&
opt
,
dir
);
...
...
src/backend/replication/walsender.c
View file @
f05c6509
...
...
@@ -515,7 +515,7 @@ ProcessRepliesIfAny(void)
default:
ereport
(
FATAL
,
(
errcode
(
ERRCODE_PROTOCOL_VIOLATION
),
errmsg
(
"invalid standby message type
%d
"
,
errmsg
(
"invalid standby message type
\"
%c
\"
"
,
firstchar
)));
}
}
...
...
@@ -566,7 +566,7 @@ ProcessStandbyMessage(void)
default:
ereport
(
COMMERROR
,
(
errcode
(
ERRCODE_PROTOCOL_VIOLATION
),
errmsg
(
"unexpected message type
%c
"
,
msgtype
)));
errmsg
(
"unexpected message type
\"
%c
\"
"
,
msgtype
)));
proc_exit
(
0
);
}
}
...
...
src/backend/utils/adt/varlena.c
View file @
f05c6509
...
...
@@ -3887,7 +3887,7 @@ text_format(PG_FUNCTION_ARGS)
if
(
arg
>
PG_NARGS
()
-
1
)
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
errmsg
(
"too few arguments for format
conversion
"
)));
errmsg
(
"too few arguments for format"
)));
/*
* At this point, we should see the main conversion specifier. Whether
...
...
@@ -3908,7 +3908,7 @@ text_format(PG_FUNCTION_ARGS)
default:
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
errmsg
(
"unrecognized conversion specifier
: %c
"
,
errmsg
(
"unrecognized conversion specifier
\"
%c
\"
"
,
*
cp
)));
}
}
...
...
src/test/regress/expected/text.out
View file @
f05c6509
...
...
@@ -171,11 +171,11 @@ select format('Hello %%%%');
-- should fail
select format('Hello %s %s', 'World');
ERROR: too few arguments for format
conversion
ERROR: too few arguments for format
select format('Hello %s');
ERROR: too few arguments for format
conversion
ERROR: too few arguments for format
select format('Hello %x', 20);
ERROR: unrecognized conversion specifier
: x
ERROR: unrecognized conversion specifier
"x"
-- check literal and sql identifiers
select format('INSERT INTO %I VALUES(%L,%L)', 'mytab', 10, 'Hello');
format
...
...
@@ -219,15 +219,15 @@ select format('%1$s %12$s', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);
-- should fail
select format('%1$s %4$s', 1, 2, 3);
ERROR: too few arguments for format
conversion
ERROR: too few arguments for format
select format('%1$s %13$s', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);
ERROR: too few arguments for format
conversion
ERROR: too few arguments for format
select format('%1s', 1);
ERROR: unterminated conversion specifier
select format('%1$', 1);
ERROR: unterminated conversion specifier
select format('%1$1', 1);
ERROR: unrecognized conversion specifier
: 1
ERROR: unrecognized conversion specifier
"1"
--checkk mix of positional and ordered placeholders
select format('Hello %s %1$s %s', 'World', 'Hello again');
format
...
...
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