Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 73eb2df

Browse files
committed
Remove extra comma.
1 parent 0345f58 commit 73eb2df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
*
2424
* IDENTIFICATION
25-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.275 2002/07/24 19:11:11 petere Exp $
25+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.276 2002/07/25 20:52:59 petere Exp $
2626
*
2727
*-------------------------------------------------------------------------
2828
*/
@@ -2897,7 +2897,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo,
28972897
if (fout->remoteVersion >= 70300)
28982898
{
28992899
/* regproc result is correctly quoted in 7.3 */
2900-
appendPQExpBuffer(q, " input = %s, output = %s, ",
2900+
appendPQExpBuffer(q, " input = %s, output = %s",
29012901
typinput, typoutput);
29022902
}
29032903
else
@@ -2906,7 +2906,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo,
29062906
/* cannot combine these because fmtId uses static result area */
29072907
appendPQExpBuffer(q, " input = %s,",
29082908
fmtId(typinput, force_quotes));
2909-
appendPQExpBuffer(q, " output = %s,",
2909+
appendPQExpBuffer(q, " output = %s",
29102910
fmtId(typoutput, force_quotes));
29112911
}
29122912

0 commit comments

Comments
 (0)