diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-06-24 23:14:49 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-06-24 23:14:49 +0000 |
commit | 46bf65148002f03a4775e6fbb2c4f758184062c5 (patch) | |
tree | 35508e7d4793489135efdbdff9b0fd2325c3b3e3 /src/include/parser/parse_oper.h | |
parent | 50e53236aff06a6193059b5a92e60561645338ab (diff) |
Array mega-patch.
Joe Conway
Diffstat (limited to 'src/include/parser/parse_oper.h')
-rw-r--r-- | src/include/parser/parse_oper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/parser/parse_oper.h b/src/include/parser/parse_oper.h index 6d2268bf557..e7c8bdb56cb 100644 --- a/src/include/parser/parse_oper.h +++ b/src/include/parser/parse_oper.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parse_oper.h,v 1.25 2003/04/29 22:13:11 tgl Exp $ + * $Id: parse_oper.h,v 1.26 2003/06/24 23:14:49 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -44,6 +44,7 @@ extern Operator ordering_oper(Oid argtype, bool noError); /* Convenience routines for common calls on the above */ extern Oid compatible_oper_opid(List *op, Oid arg1, Oid arg2, bool noError); extern Oid equality_oper_funcid(Oid argtype); +extern Oid ordering_oper_funcid(Oid argtype); extern Oid ordering_oper_opid(Oid argtype); /* Extract operator OID or underlying-function OID from an Operator tuple */ |