mirror of
https://github.com/postgres/postgres.git
synced 2026-01-05 23:38:41 +03:00
Define new routines oper_exact() and oper_inexact().
Add coerce_target_expr().
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* 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 right_oper(char *op, Oid arg);
|
||||||
extern Operator left_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 */
|
#endif /* PARSE_OPER_H */
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1994, Regents of the University of California
|
* Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: parse_target.h,v 1.5 1998/05/21 03:53:51 scrappy Exp $
|
* $Id: parse_target.h,v 1.6 1998/05/29 14:07:50 thomas Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@@ -25,6 +25,9 @@
|
|||||||
extern List *transformTargetList(ParseState *pstate, List *targetlist);
|
extern List *transformTargetList(ParseState *pstate, List *targetlist);
|
||||||
extern List *makeTargetNames(ParseState *pstate, List *cols);
|
extern List *makeTargetNames(ParseState *pstate, List *cols);
|
||||||
extern void transformTargetId(ParseState *pstate, Ident *ident,
|
extern void transformTargetId(ParseState *pstate, Ident *ident,
|
||||||
TargetEntry *tent, char *resname, int16 resjunk);
|
TargetEntry *tent, char *resname,
|
||||||
|
int16 resjunk);
|
||||||
|
extern Node *coerce_target_expr(ParseState *pstate, Node *expr,
|
||||||
|
Oid type_id, Oid attrtype);
|
||||||
|
|
||||||
#endif /* PARSE_TARGET_H */
|
#endif /* PARSE_TARGET_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user