File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1111 *
1212 *
1313 * IDENTIFICATION
14- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.254 2001/09/28 08:09:09 thomas Exp $
14+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.255 2001/10/01 04:19:18 tgl Exp $
1515 *
1616 * HISTORY
1717 * AUTHOR DATE MAJOR EVENT
@@ -2459,11 +2459,16 @@ opt_class: class
24592459 *
24602460 * Release 7.1 removes lztext_ops, so suppress that too
24612461 * for a while. tgl 2000/07/30
2462+ *
2463+ * Release 7.2 renames timestamp_ops to timestamptz_ops,
2464+ * so suppress that too for awhile. I'm starting to
2465+ * think we need a better approach. tgl 2000/10/01
24622466 */
24632467 if (strcmp($1 , " network_ops" ) != 0 &&
24642468 strcmp ($1 , " timespan_ops" ) != 0 &&
24652469 strcmp($1 , " datetime_ops" ) != 0 &&
2466- strcmp($1 , " lztext_ops" ) != 0)
2470+ strcmp($1 , " lztext_ops" ) != 0 &&
2471+ strcmp($1 , " timestamp_ops" ) != 0)
24672472 $$ = $1;
24682473 else
24692474 $$ = NULL ;
You can’t perform that action at this time.
0 commit comments