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
cce40d15
Commit
cce40d15
authored
Aug 08, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove space between function name and opening paren in pg_dump, for
clarity.
parent
60356aa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+6
-6
No files found.
src/bin/pg_dump/pg_dump.c
View file @
cce40d15
...
...
@@ -12,7 +12,7 @@
* by PostgreSQL
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.34
3 2003/08/07 21:11:58 tgl
Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.34
4 2003/08/08 01:21:02 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -3696,9 +3696,9 @@ format_function_signature(FuncInfo *finfo, bool honor_quotes)
initPQExpBuffer
(
&
fn
);
if
(
honor_quotes
)
appendPQExpBuffer
(
&
fn
,
"%s
("
,
fmtId
(
finfo
->
proname
));
appendPQExpBuffer
(
&
fn
,
"%s("
,
fmtId
(
finfo
->
proname
));
else
appendPQExpBuffer
(
&
fn
,
"%s
("
,
finfo
->
proname
);
appendPQExpBuffer
(
&
fn
,
"%s("
,
finfo
->
proname
);
for
(
j
=
0
;
j
<
finfo
->
nargs
;
j
++
)
{
char
*
typname
;
...
...
@@ -6005,7 +6005,7 @@ dumpOneSequence(Archive *fout, TableInfo *tbinfo,
if
(
!
schemaOnly
)
{
resetPQExpBuffer
(
query
);
appendPQExpBuffer
(
query
,
"SELECT pg_catalog.setval
("
);
appendPQExpBuffer
(
query
,
"SELECT pg_catalog.setval("
);
appendStringLiteral
(
query
,
fmtId
(
tbinfo
->
relname
),
true
);
appendPQExpBuffer
(
query
,
", %s, %s);
\n
"
,
last
,
(
called
?
"true"
:
"false"
));
...
...
@@ -6382,10 +6382,10 @@ dumpTriggers(Archive *fout, TableInfo *tblinfo, int numTables)
/* In 7.3, result of regproc is already quoted */
if
(
g_fout
->
remoteVersion
>=
70300
)
appendPQExpBuffer
(
query
,
"EXECUTE PROCEDURE %s
("
,
appendPQExpBuffer
(
query
,
"EXECUTE PROCEDURE %s("
,
tgfname
);
else
appendPQExpBuffer
(
query
,
"EXECUTE PROCEDURE %s
("
,
appendPQExpBuffer
(
query
,
"EXECUTE PROCEDURE %s("
,
fmtId
(
tgfname
));
for
(
findx
=
0
;
findx
<
tgnargs
;
findx
++
)
{
...
...
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