diff options
| author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-05-29 14:07:50 +0000 |
|---|---|---|
| committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-05-29 14:07:50 +0000 |
| commit | 2d4c6cab962fa17486ad2843f4d2bf0e5eec3628 (patch) | |
| tree | 2f6261e53f45e3be52d13ef5a608db4fe1bf1142 /src/include/parser/parse_oper.h | |
| parent | d2404c17c9df0b187a95f5674d18438d3e4d717f (diff) | |
| download | postgresql-2d4c6cab962fa17486ad2843f4d2bf0e5eec3628.tar.gz | |
Define new routines oper_exact() and oper_inexact().
Add coerce_target_expr().
Diffstat (limited to 'src/include/parser/parse_oper.h')
| -rw-r--r-- | src/include/parser/parse_oper.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/parser/parse_oper.h b/src/include/parser/parse_oper.h index 01f21adc1e..7a0c9cd97f 100644 --- a/src/include/parser/parse_oper.h +++ b/src/include/parser/parse_oper.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_oper.h,v 1.4 1998/02/26 04:42:47 momjian Exp $ + * $Id: parse_oper.h,v 1.5 1998/05/29 14:07:50 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -24,4 +24,7 @@ extern Operator oper(char *op, Oid arg1, Oid arg2, bool noWarnings); extern Operator right_oper(char *op, Oid arg); extern Operator left_oper(char *op, Oid arg); +extern Operator oper_exact(char *op, Oid arg1, Oid arg2, Node **ltree, Node **rtree, bool noWarnings); +extern Operator oper_inexact(char *op, Oid arg1, Oid arg2, Node **ltree, Node **rtree, bool noWarnings); + #endif /* PARSE_OPER_H */ |
