mirror of
https://github.com/postgres/postgres.git
synced 2025-09-08 00:47:37 +03:00
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parse_target.h
|
|
* handle target lists
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/parser/parse_target.h,v 1.35 2004/12/31 22:03:38 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSE_TARGET_H
|
|
#define PARSE_TARGET_H
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
|
|
extern List *transformTargetList(ParseState *pstate, List *targetlist);
|
|
extern void markTargetListOrigins(ParseState *pstate, List *targetlist);
|
|
extern TargetEntry *transformTargetEntry(ParseState *pstate,
|
|
Node *node, Node *expr,
|
|
char *colname, bool resjunk);
|
|
extern void updateTargetListEntry(ParseState *pstate, TargetEntry *tle,
|
|
char *colname, int attrno,
|
|
List *indirection);
|
|
extern List *checkInsertTargets(ParseState *pstate, List *cols,
|
|
List **attrnos);
|
|
extern char *FigureColname(Node *node);
|
|
|
|
#endif /* PARSE_TARGET_H */
|