File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 3
3
# pg_upgrade: update a database without needing a full dump/reload cycle.
4
4
# CAUTION: Read the manual page before trying to use this!
5
5
6
- # $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/pg_upgrade,v 1.32 2002/01/13 04:55:44 momjian Exp $
6
+ # $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/pg_upgrade,v 1.33 2002/01/13 05:36:42 momjian Exp $
7
7
#
8
8
# NOTE: we must be sure to update the version-checking code a few dozen lines
9
9
# below for each new PostgreSQL release.
@@ -191,14 +191,14 @@ $0 aborted." 1>&2
191
191
$9 >= 2147483646 &&
192
192
$9 <= 2147483648)
193
193
{
194
- for(i=1; i < NF; i++)
194
+ for(i=1; i <= NF; i++)
195
195
{
196
196
if (i != 9)
197
197
printf "%s ", $i;
198
198
else
199
199
printf "%s ", "9223372036854775807";
200
200
}
201
- print;
201
+ print "" ;
202
202
}
203
203
else print $0;
204
204
}' > " $INFODIR " /schema
@@ -261,6 +261,8 @@ $0 aborted." 1>&2
261
261
$0 aborted." 1>&2
262
262
exit 1
263
263
fi
264
+ echo
265
+ echo
264
266
echo " Plase 1 completed.
265
267
Continue with the steps outlined in the $0 manual page."
266
268
exit 0
You can’t perform that action at this time.
0 commit comments