|
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.15 2000/05/05 03:08:20 tgl Exp $ |
| 6 | +# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/pg_upgrade,v 1.16 2000/12/18 16:30:07 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.
|
|
93 | 93 | # looks uglier but is more flexible.
|
94 | 94 |
|
95 | 95 | case"$SRCVERSION"in
|
96 |
| - 6.5) ;; |
97 |
| - 7.0) ;; |
| 96 | +# 7.0) ;; |
98 | 97 | *)echo"Sorry,`basename$0` cannot upgrade database version$SRCVERSION to$DESTVERSION."1>&2
|
99 | 98 | echo"The on-disk structure of tables has changed."1>&2
|
100 | 99 | echo"You will need to dump and restore using pg_dump."1>&2
|
|