You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* parse_expr.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
|
|
|
*
|
|
|
|
|
* $Id: parse_expr.h,v 1.15 1999/08/05 02:33:51 tgl Exp $
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PARSE_EXPR_H
|
|
|
|
|
#define PARSE_EXPR_H
|
|
|
|
|
|
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
|
#include "parser/parse_type.h"
|
|
|
|
|
|
|
|
|
|
#define EXPR_COLUMN_FIRST 1
|
|
|
|
|
#define EXPR_RELATION_FIRST 2
|
|
|
|
|
|
|
|
|
|
extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence);
|
|
|
|
|
extern Oid exprType(Node *expr);
|
|
|
|
|
extern int32 exprTypmod(Node *expr);
|
|
|
|
|
|
|
|
|
|
#endif /* PARSE_EXPR_H */
|