]> granicus.if.org Git - postgresql/blob - src/include/parser/parse_expr.h
cb921fd2fbd3b997374fcbd8ec9d26b372294989
[postgresql] / src / include / parser / parse_expr.h
1 /*-------------------------------------------------------------------------
2  *
3  * parse_expr.h
4  *        handle expressions in parser
5  *
6  * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  * $PostgreSQL: pgsql/src/include/parser/parse_expr.h,v 1.39 2008/08/25 22:42:34 tgl Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PARSE_EXPR_H
14 #define PARSE_EXPR_H
15
16 #include "parser/parse_node.h"
17
18 /* GUC parameters */
19 extern bool Transform_null_equals;
20
21 extern Node *transformExpr(ParseState *pstate, Node *expr);
22
23 #endif   /* PARSE_EXPR_H */