mirror of
https://github.com/postgres/postgres.git
synced 2025-09-08 00:47:37 +03:00
Eliminate local inefficiencies in updateTargetListEntry, make_var, and
make_const --- don't repeat cache searches that aren't needed.
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: parse_target.h,v 1.15 1999/07/19 00:26:18 tgl Exp $
|
||||
* $Id: parse_target.h,v 1.16 1999/11/01 05:06:20 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -20,9 +20,11 @@ extern TargetEntry *transformTargetEntry(ParseState *pstate,
|
||||
Node *node, Node *expr,
|
||||
char *colname, bool resjunk);
|
||||
extern void updateTargetListEntry(ParseState *pstate, TargetEntry *tle,
|
||||
char *colname, List *indirection);
|
||||
char *colname, int attrno,
|
||||
List *indirection);
|
||||
extern Node *CoerceTargetExpr(ParseState *pstate, Node *expr,
|
||||
Oid type_id, Oid attrtype);
|
||||
extern List *makeTargetNames(ParseState *pstate, List *cols);
|
||||
extern List *checkInsertTargets(ParseState *pstate, List *cols,
|
||||
List **attrnos);
|
||||
|
||||
#endif /* PARSE_TARGET_H */
|
||||
|
Reference in New Issue
Block a user