summaryrefslogtreecommitdiff
path: root/src/include/parser/parse_oper.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-05-01 19:26:08 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-05-01 19:26:08 +0000
commita829cbb8774c98f91656ac71f8930207d53e0407 (patch)
treefb0824434473adc9490854e2c5699a574a295e27 /src/include/parser/parse_oper.h
parent61446e0927ab31bf4227c7eb3de95b72540f051a (diff)
downloadpostgresql-a829cbb8774c98f91656ac71f8930207d53e0407.tar.gz
Give left_oper() and right_oper() noError parameters like oper() (the
binary case) already has. Needed for upcoming ruleutils change.
Diffstat (limited to 'src/include/parser/parse_oper.h')
-rw-r--r--src/include/parser/parse_oper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/parser/parse_oper.h b/src/include/parser/parse_oper.h
index 5793c16b31..0394cb5b53 100644
--- a/src/include/parser/parse_oper.h
+++ b/src/include/parser/parse_oper.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_oper.h,v 1.19 2002/04/16 23:08:12 tgl Exp $
+ * $Id: parse_oper.h,v 1.20 2002/05/01 19:26:08 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -27,8 +27,8 @@ extern Oid LookupOperNameTypeNames(List *opername, TypeName *oprleft,
/* Routines to find operators matching a name and given input types */
/* NB: the selected operator may require coercion of the input types! */
extern Operator oper(List *op, Oid arg1, Oid arg2, bool noError);
-extern Operator right_oper(List *op, Oid arg);
-extern Operator left_oper(List *op, Oid arg);
+extern Operator right_oper(List *op, Oid arg, bool noError);
+extern Operator left_oper(List *op, Oid arg, bool noError);
/* Routines to find operators that DO NOT require coercion --- ie, their */
/* input types are either exactly as given, or binary-compatible */