|
11 | 11 | * |
12 | 12 | * |
13 | 13 | * 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 $ |
15 | 15 | * |
16 | 16 | * HISTORY |
17 | 17 | * AUTHORDATEMAJOR EVENT |
@@ -2459,11 +2459,16 @@ opt_class: class |
2459 | 2459 | * |
2460 | 2460 | * Release 7.1 removes lztext_ops, so suppress that too |
2461 | 2461 | * 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 |
2462 | 2466 | */ |
2463 | 2467 | if (strcmp($1,"network_ops") !=0 && |
2464 | 2468 | strcmp($1,"timespan_ops") != 0 && |
2465 | 2469 | strcmp($1,"datetime_ops") != 0 && |
2466 | | -strcmp($1,"lztext_ops") != 0) |
| 2470 | +strcmp($1,"lztext_ops") != 0 && |
| 2471 | +strcmp($1,"timestamp_ops") != 0) |
2467 | 2472 | $$ = $1; |
2468 | 2473 | else |
2469 | 2474 | $$ =NULL; |
|