00001 /*------------------------------------------------------------------------- 00002 * 00003 * parse_expr.h 00004 * handle expressions in parser 00005 * 00006 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00007 * Portions Copyright (c) 1994, Regents of the University of California 00008 * 00009 * src/include/parser/parse_expr.h 00010 * 00011 *------------------------------------------------------------------------- 00012 */ 00013 #ifndef PARSE_EXPR_H 00014 #define PARSE_EXPR_H 00015 00016 #include "parser/parse_node.h" 00017 00018 /* GUC parameters */ 00019 extern bool Transform_null_equals; 00020 00021 extern Node *transformExpr(ParseState *pstate, Node *expr, ParseExprKind exprKind); 00022 00023 extern const char *ParseExprKindName(ParseExprKind exprKind); 00024 00025 #endif /* PARSE_EXPR_H */