Suppress timestamp_ops for backwards compatibility with 7.1 pg_dump.
This commit is contained in:
parent
a8443da57a
commit
f58179669a
@ -11,7 +11,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.254 2001/09/28 08:09:09 thomas Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.255 2001/10/01 04:19:18 tgl Exp $
|
||||||
*
|
*
|
||||||
* HISTORY
|
* HISTORY
|
||||||
* AUTHOR DATE MAJOR EVENT
|
* AUTHOR DATE MAJOR EVENT
|
||||||
@ -2459,11 +2459,16 @@ opt_class: class
|
|||||||
*
|
*
|
||||||
* Release 7.1 removes lztext_ops, so suppress that too
|
* Release 7.1 removes lztext_ops, so suppress that too
|
||||||
* for a while. tgl 2000/07/30
|
* for a while. tgl 2000/07/30
|
||||||
|
*
|
||||||
|
* Release 7.2 renames timestamp_ops to timestamptz_ops,
|
||||||
|
* so suppress that too for awhile. I'm starting to
|
||||||
|
* think we need a better approach. tgl 2000/10/01
|
||||||
*/
|
*/
|
||||||
if (strcmp($1, "network_ops") != 0 &&
|
if (strcmp($1, "network_ops") != 0 &&
|
||||||
strcmp($1, "timespan_ops") != 0 &&
|
strcmp($1, "timespan_ops") != 0 &&
|
||||||
strcmp($1, "datetime_ops") != 0 &&
|
strcmp($1, "datetime_ops") != 0 &&
|
||||||
strcmp($1, "lztext_ops") != 0)
|
strcmp($1, "lztext_ops") != 0 &&
|
||||||
|
strcmp($1, "timestamp_ops") != 0)
|
||||||
$$ = $1;
|
$$ = $1;
|
||||||
else
|
else
|
||||||
$$ = NULL;
|
$$ = NULL;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user