File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 12
12
* by PostgreSQL
13
13
*
14
14
* IDENTIFICATION
15
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.558 2009/12/19 04:13:30 itagaki Exp $
15
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.559 2009/12/22 23:27:41 petere Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
@@ -11254,16 +11254,16 @@ dumpSequence(Archive *fout, TableInfo *tbinfo)
11254
11254
11255
11255
appendPQExpBuffer (query , " INCREMENT BY %s\n" , incby );
11256
11256
11257
- if (maxv )
11258
- appendPQExpBuffer (query , " MAXVALUE %s\n" , maxv );
11259
- else
11260
- appendPQExpBuffer (query , " NO MAXVALUE\n" );
11261
-
11262
11257
if (minv )
11263
11258
appendPQExpBuffer (query , " MINVALUE %s\n" , minv );
11264
11259
else
11265
11260
appendPQExpBuffer (query , " NO MINVALUE\n" );
11266
11261
11262
+ if (maxv )
11263
+ appendPQExpBuffer (query , " MAXVALUE %s\n" , maxv );
11264
+ else
11265
+ appendPQExpBuffer (query , " NO MAXVALUE\n" );
11266
+
11267
11267
appendPQExpBuffer (query ,
11268
11268
" CACHE %s%s" ,
11269
11269
cache , (cycled ? "\n CYCLE" : "" ));
You can’t perform that action at this time.
0 commit comments