1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

Allow comparison between xid and xid, int.

This commit is contained in:
Hiroshi Inoue
2001-09-29 23:01:26 +00:00
parent ebfa88c4ec
commit 1647d3ae61
2 changed files with 4 additions and 2 deletions

View File

@@ -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) \