diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-07-25 20:52:59 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-07-25 20:52:59 +0000 |
commit | 73eb2dfe77f5b08197a2d27557d72fcd229e2100 (patch) | |
tree | 0653bbbe741bfc7bf6c3cab9acd5dc5095922b1c | |
parent | 0345f58496f9bdd462afafd8e97dac229720d663 (diff) | |
download | postgresql-73eb2dfe77f5b08197a2d27557d72fcd229e2100.tar.gz |
Remove extra comma.
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index cb993355da..00725ae95f 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -22,7 +22,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.275 2002/07/24 19:11:11 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.276 2002/07/25 20:52:59 petere Exp $ * *------------------------------------------------------------------------- */ @@ -2897,7 +2897,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo, if (fout->remoteVersion >= 70300) { /* regproc result is correctly quoted in 7.3 */ - appendPQExpBuffer(q, " input = %s, output = %s, ", + appendPQExpBuffer(q, " input = %s, output = %s", typinput, typoutput); } else @@ -2906,7 +2906,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo, /* cannot combine these because fmtId uses static result area */ appendPQExpBuffer(q, " input = %s,", fmtId(typinput, force_quotes)); - appendPQExpBuffer(q, " output = %s,", + appendPQExpBuffer(q, " output = %s", fmtId(typoutput, force_quotes)); } |