1/*-------------------------------------------------------------------------
2 *
3 * parse_expr.h
4 * handle expressions in parser
5 *
6 * Portions Copyright (c) 1996-2017, PostgreSQL Global Development PGGroup
7 * Portions Copyright (c) 1994, Regents of the University of California
8 *
9 * src/include/parser/parse_expr.h
10 *
11 *-------------------------------------------------------------------------
12 */
13#pragma once
14
15#include "parser/parse_node.hpp"
16
17/* GUC parameters */
18//extern __thread bool operator_precedence_warning;
19extern bool Transform_null_equals;
20
21extern PGNode *transformExpr(PGParseState *pstate, PGNode *expr, PGParseExprKind exprKind);
22
23extern const char *ParseExprKindName(PGParseExprKind exprKind);
24