summaryrefslogtreecommitdiff
path: root/src/include/parser
diff options
context:
space:
mode:
authorHiroshi Inoue2001-09-29 23:01:26 +0000
committerHiroshi Inoue2001-09-29 23:01:26 +0000
commit1647d3ae61c46c8bce2690dc7c3b14b4299c3dd3 (patch)
tree0d9fe55c819ee197bbb9618b7eb4ed76fc338b5c /src/include/parser
parentebfa88c4ec3605f85fb87e3a31853a1559d05a51 (diff)
Allow comparison between xid and xid, int.
Diffstat (limited to 'src/include/parser')
-rw-r--r--src/include/parser/parse_coerce.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/parser/parse_coerce.h b/src/include/parser/parse_coerce.h
index 6634dbfc294..4f5cce1848d 100644
--- a/src/include/parser/parse_coerce.h
+++ b/src/include/parser/parse_coerce.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_coerce.h,v 1.31 2001/06/24 02:41:21 momjian Exp $
+ * $Id: parse_coerce.h,v 1.32 2001/09/29 23:01:26 inoue Exp $
*
*-------------------------------------------------------------------------
*/
@@ -95,6 +95,7 @@ typedef enum CATEGORY
|| ((a) == INT4OID && (b) == REGPROCOID) \
|| ((a) == REGPROCOID && (b) == OIDOID) \
|| ((a) == REGPROCOID && (b) == INT4OID) \
+ || ((a) == XIDOID && (b) == INT4OID) \
|| ((a) == ABSTIMEOID && (b) == INT4OID) \
|| ((a) == INT4OID && (b) == ABSTIMEOID) \
|| ((a) == RELTIMEOID && (b) == INT4OID) \