mirror of
https://github.com/postgres/postgres.git
synced 2025-12-14 00:04:34 -05:00
29 lines
736 B
C
29 lines
736 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parse_target.h
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: parse_target.h,v 1.4 1998/02/26 04:42:49 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSE_TARGET_H
|
|
#define PARSE_TARGET_H
|
|
|
|
#include <nodes/pg_list.h>
|
|
#include <nodes/nodes.h>
|
|
#include <nodes/parsenodes.h>
|
|
#include <nodes/primnodes.h>
|
|
#include <parser/parse_node.h>
|
|
|
|
#define EXPR_COLUMN_FIRST 1
|
|
#define EXPR_RELATION_FIRST 2
|
|
|
|
extern List *transformTargetList(ParseState *pstate, List *targetlist);
|
|
extern List *makeTargetNames(ParseState *pstate, List *cols);
|
|
|
|
#endif /* PARSE_TARGET_H */
|