1997-11-25 17:07:18 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-07-18 20:26:20 -04:00
|
|
|
* parse_expr.h
|
2008-08-25 18:42:34 -04:00
|
|
|
* handle expressions in parser
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
2011-01-01 13:18:15 -05:00
|
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/parser/parse_expr.h
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PARSE_EXPR_H
|
|
|
|
|
#define PARSE_EXPR_H
|
|
|
|
|
|
1999-07-15 19:04:24 -04:00
|
|
|
#include "parser/parse_node.h"
|
1997-11-25 17:07:18 -05:00
|
|
|
|
2002-03-21 11:02:16 -05:00
|
|
|
/* GUC parameters */
|
2001-09-20 10:20:28 -04:00
|
|
|
extern bool Transform_null_equals;
|
2000-03-17 00:29:07 -05:00
|
|
|
|
2002-12-12 15:35:16 -05:00
|
|
|
extern Node *transformExpr(ParseState *pstate, Node *expr);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* PARSE_EXPR_H */
|