File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
9
9
* Portions Copyright (c) 1994, Regents of the University of California
10
10
*
11
- * $Id: pg_operator.h,v 1.94 2001/09/28 08:09:13 thomas Exp $
11
+ * $Id: pg_operator.h,v 1.95 2001/09/29 23:01:26 inoue Exp $
12
12
*
13
13
* NOTES
14
14
* the genbki.sh script reads this file and generates .bki
@@ -138,6 +138,7 @@ DATA(insert OID = 398 ( "=" PGUID 0 b t f 1025 1025 16 398 0 0 0 array_e
138
138
DATA (insert OID = 400 ( "=" PGUID 0 b t f 1027 1027 16 400 0 0 0 array_eq eqsel eqjoinsel ));
139
139
DATA (insert OID = 401 ( "=" PGUID 0 b t f 1034 1034 16 401 0 0 0 array_eq eqsel eqjoinsel ));
140
140
141
+ DATA (insert OID = 352 ( "=" PGUID 0 b t t 28 28 16 352 0 0 0 xideq eqsel eqjoinsel ));
141
142
DATA (insert OID = 387 ( "=" PGUID 0 b t t 27 27 16 387 0 0 0 tideq eqsel eqjoinsel ));
142
143
#define TIDEqualOperator 387
143
144
DATA (insert OID = 388 ( "!" PGUID 0 r t f 20 0 20 0 0 0 0 int8fac - - ));
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $Id: parse_coerce.h,v 1.31 2001/06/24 02:41:21 momjian Exp $
10
+ * $Id: parse_coerce.h,v 1.32 2001/09/29 23:01:26 inoue Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -95,6 +95,7 @@ typedef enum CATEGORY
95
95
|| ((a) == INT4OID && (b) == REGPROCOID) \
96
96
|| ((a) == REGPROCOID && (b) == OIDOID) \
97
97
|| ((a) == REGPROCOID && (b) == INT4OID) \
98
+ || ((a) == XIDOID && (b) == INT4OID) \
98
99
|| ((a) == ABSTIMEOID && (b) == INT4OID) \
99
100
|| ((a) == INT4OID && (b) == ABSTIMEOID) \
100
101
|| ((a) == RELTIMEOID && (b) == INT4OID) \
You can’t perform that action at this time.
0 commit comments