22
22
*
23
23
*
24
24
* 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 $
26
26
*
27
27
*-------------------------------------------------------------------------
28
28
*/
@@ -2897,7 +2897,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo,
2897
2897
if (fout -> remoteVersion >= 70300 )
2898
2898
{
2899
2899
/* regproc result is correctly quoted in 7.3 */
2900
- appendPQExpBuffer (q , " input = %s, output = %s, " ,
2900
+ appendPQExpBuffer (q , " input = %s, output = %s" ,
2901
2901
typinput , typoutput );
2902
2902
}
2903
2903
else
@@ -2906,7 +2906,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo,
2906
2906
/* cannot combine these because fmtId uses static result area */
2907
2907
appendPQExpBuffer (q , " input = %s," ,
2908
2908
fmtId (typinput , force_quotes ));
2909
- appendPQExpBuffer (q , " output = %s, " ,
2909
+ appendPQExpBuffer (q , " output = %s" ,
2910
2910
fmtId (typoutput , force_quotes ));
2911
2911
}
2912
2912
0 commit comments