1997-11-25 17:07:18 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* parse_target.h
|
Extend pg_cast castimplicit column to a three-way value; this allows us
to be flexible about assignment casts without introducing ambiguity in
operator/function resolution. Introduce a well-defined promotion hierarchy
for numeric datatypes (int2->int4->int8->numeric->float4->float8).
Change make_const to initially label numeric literals as int4, int8, or
numeric (never float8 anymore).
Explicitly mark Func and RelabelType nodes to indicate whether they came
from a function call, explicit cast, or implicit cast; use this to do
reverse-listing more accurately and without so many heuristics.
Explicit casts to char, varchar, bit, varbit will truncate or pad without
raising an error (the pre-7.2 behavior), while assigning to a column without
any explicit cast will still raise an error for wrong-length data like 7.3.
This more nearly follows the SQL spec than 7.2 behavior (we should be
reporting a 'completion condition' in the explicit-cast cases, but we have
no mechanism for that, so just do silent truncation).
Fix some problems with enforcement of typmod for array elements;
it didn't work at all in 'UPDATE ... SET array[n] = foo', for example.
Provide a generalized array_length_coerce() function to replace the
specialized per-array-type functions that used to be needed (and were
missing for NUMERIC as well as all the datetime types).
Add missing conversions int8<->float4, text<->numeric, oid<->int8.
initdb forced.
2002-09-18 17:35:25 -04:00
|
|
|
* handle target lists
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*
|
2011-01-01 13:18:15 -05:00
|
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
2010-09-20 16:08:53 -04:00
|
|
|
* src/include/parser/parse_target.h
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PARSE_TARGET_H
|
|
|
|
|
#define PARSE_TARGET_H
|
|
|
|
|
|
1999-07-15 19:04:24 -04:00
|
|
|
#include "parser/parse_node.h"
|
1997-11-25 17:07:18 -05:00
|
|
|
|
Extend pg_cast castimplicit column to a three-way value; this allows us
to be flexible about assignment casts without introducing ambiguity in
operator/function resolution. Introduce a well-defined promotion hierarchy
for numeric datatypes (int2->int4->int8->numeric->float4->float8).
Change make_const to initially label numeric literals as int4, int8, or
numeric (never float8 anymore).
Explicitly mark Func and RelabelType nodes to indicate whether they came
from a function call, explicit cast, or implicit cast; use this to do
reverse-listing more accurately and without so many heuristics.
Explicit casts to char, varchar, bit, varbit will truncate or pad without
raising an error (the pre-7.2 behavior), while assigning to a column without
any explicit cast will still raise an error for wrong-length data like 7.3.
This more nearly follows the SQL spec than 7.2 behavior (we should be
reporting a 'completion condition' in the explicit-cast cases, but we have
no mechanism for that, so just do silent truncation).
Fix some problems with enforcement of typmod for array elements;
it didn't work at all in 'UPDATE ... SET array[n] = foo', for example.
Provide a generalized array_length_coerce() function to replace the
specialized per-array-type functions that used to be needed (and were
missing for NUMERIC as well as all the datetime types).
Add missing conversions int8<->float4, text<->numeric, oid<->int8.
initdb forced.
2002-09-18 17:35:25 -04:00
|
|
|
|
1997-11-25 20:14:33 -05:00
|
|
|
extern List *transformTargetList(ParseState *pstate, List *targetlist);
|
2006-08-01 21:59:48 -04:00
|
|
|
extern List *transformExpressionList(ParseState *pstate, List *exprlist);
|
2003-05-05 20:20:33 -04:00
|
|
|
extern void markTargetListOrigins(ParseState *pstate, List *targetlist);
|
1999-07-18 20:26:20 -04:00
|
|
|
extern TargetEntry *transformTargetEntry(ParseState *pstate,
|
2000-04-12 13:17:23 -04:00
|
|
|
Node *node, Node *expr,
|
2003-02-13 00:53:46 -05:00
|
|
|
char *colname, bool resjunk);
|
2006-08-01 21:59:48 -04:00
|
|
|
extern Expr *transformAssignedExpr(ParseState *pstate, Expr *expr,
|
|
|
|
|
char *colname,
|
|
|
|
|
int attrno,
|
|
|
|
|
List *indirection,
|
|
|
|
|
int location);
|
1999-07-18 20:26:20 -04:00
|
|
|
extern void updateTargetListEntry(ParseState *pstate, TargetEntry *tle,
|
2000-04-12 13:17:23 -04:00
|
|
|
char *colname, int attrno,
|
2006-03-22 19:19:30 -05:00
|
|
|
List *indirection,
|
|
|
|
|
int location);
|
1999-11-01 00:06:21 -05:00
|
|
|
extern List *checkInsertTargets(ParseState *pstate, List *cols,
|
2000-04-12 13:17:23 -04:00
|
|
|
List **attrnos);
|
2005-05-30 21:03:23 -04:00
|
|
|
extern TupleDesc expandRecordVariable(ParseState *pstate, Var *var,
|
2005-10-14 22:49:52 -04:00
|
|
|
int levelsup);
|
2004-09-29 20:24:27 -04:00
|
|
|
extern char *FigureColname(Node *node);
|
Adjust naming of indexes and their columns per recent discussion.
Index expression columns are now named after the FigureColname result for
their expressions, rather than always being "pg_expression_N". Digits are
appended to this name if needed to make the column name unique within the
index. (That happens for regular columns too, thus fixing the old problem
that CREATE INDEX fooi ON foo (f1, f1) fails. Before exclusion indexes
there was no real reason to do such a thing, but now maybe there is.)
Default names for indexes and associated constraints now include the column
names of all their columns, not only the first one as in previous practice.
(Of course, this will be truncated as needed to fit in NAMEDATALEN. Also,
pkey indexes retain the historical behavior of not naming specific columns
at all.)
An example of the results:
regression=# create table foo (f1 int, f2 text,
regression(# exclude (f1 with =, lower(f2) with =));
NOTICE: CREATE TABLE / EXCLUDE will create implicit index "foo_f1_lower_exclusion" for table "foo"
CREATE TABLE
regression=# \d foo_f1_lower_exclusion
Index "public.foo_f1_lower_exclusion"
Column | Type | Definition
--------+---------+------------
f1 | integer | f1
lower | text | lower(f2)
btree, for table "public.foo"
2009-12-22 21:35:25 -05:00
|
|
|
extern char *FigureIndexColname(Node *node);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* PARSE_TARGET_H */
|