mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 16:27:47 +08:00
in different namespaces. Also, cleanup work on relation namespace support: drop, alter, rename commands work for tables in non-default namespaces.
31 lines
815 B
C
31 lines
815 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parse_expr.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: parse_expr.h,v 1.27 2002/03/29 19:06:24 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSE_EXPR_H
|
|
#define PARSE_EXPR_H
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
|
|
/* GUC parameters */
|
|
extern int max_expr_depth;
|
|
extern bool Transform_null_equals;
|
|
|
|
extern Node *transformExpr(ParseState *pstate, Node *expr);
|
|
extern Oid exprType(Node *expr);
|
|
extern int32 exprTypmod(Node *expr);
|
|
extern bool exprIsLengthCoercion(Node *expr, int32 *coercedTypmod);
|
|
extern void parse_expr_init(void);
|
|
|
|
#endif /* PARSE_EXPR_H */
|