diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-01 19:26:08 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-01 19:26:08 +0000 |
| commit | a829cbb8774c98f91656ac71f8930207d53e0407 (patch) | |
| tree | fb0824434473adc9490854e2c5699a574a295e27 /src/include/parser/parse_oper.h | |
| parent | 61446e0927ab31bf4227c7eb3de95b72540f051a (diff) | |
| download | postgresql-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.h | 6 |
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 */ |
