PostgreSQL Source Code  git master
view.c
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * view.c
4  * use rewrite rules to construct views
5  *
6  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  * src/backend/commands/view.c
12  *
13  *-------------------------------------------------------------------------
14  */
15 #include "postgres.h"
16 
17 #include "access/relation.h"
18 #include "access/xact.h"
19 #include "catalog/namespace.h"
20 #include "commands/defrem.h"
21 #include "commands/tablecmds.h"
22 #include "commands/view.h"
23 #include "miscadmin.h"
24 #include "nodes/makefuncs.h"
25 #include "nodes/nodeFuncs.h"
26 #include "parser/analyze.h"
27 #include "parser/parse_relation.h"
28 #include "rewrite/rewriteDefine.h"
29 #include "rewrite/rewriteHandler.h"
30 #include "rewrite/rewriteManip.h"
31 #include "rewrite/rewriteSupport.h"
32 #include "utils/acl.h"
33 #include "utils/builtins.h"
34 #include "utils/lsyscache.h"
35 #include "utils/rel.h"
36 #include "utils/syscache.h"
37 
38 static void checkViewTupleDesc(TupleDesc newdesc, TupleDesc olddesc);
39 
40 /*---------------------------------------------------------------------
41  * DefineVirtualRelation
42  *
43  * Create a view relation and use the rules system to store the query
44  * for the view.
45  *
46  * EventTriggerAlterTableStart must have been called already.
47  *---------------------------------------------------------------------
48  */
49 static ObjectAddress
50 DefineVirtualRelation(RangeVar *relation, List *tlist, bool replace,
51  List *options, Query *viewParse)
52 {
53  Oid viewOid;
54  LOCKMODE lockmode;
55  CreateStmt *createStmt = makeNode(CreateStmt);
56  List *attrList;
57  ListCell *t;
58 
59  /*
60  * create a list of ColumnDef nodes based on the names and types of the
61  * (non-junk) targetlist items from the view's SELECT list.
62  */
63  attrList = NIL;
64  foreach(t, tlist)
65  {
66  TargetEntry *tle = (TargetEntry *) lfirst(t);
67 
68  if (!tle->resjunk)
69  {
70  ColumnDef *def = makeColumnDef(tle->resname,
71  exprType((Node *) tle->expr),
72  exprTypmod((Node *) tle->expr),
73  exprCollation((Node *) tle->expr));
74 
75  /*
76  * It's possible that the column is of a collatable type but the
77  * collation could not be resolved, so double-check.
78  */
79  if (type_is_collatable(exprType((Node *) tle->expr)))
80  {
81  if (!OidIsValid(def->collOid))
82  ereport(ERROR,
83  (errcode(ERRCODE_INDETERMINATE_COLLATION),
84  errmsg("could not determine which collation to use for view column \"%s\"",
85  def->colname),
86  errhint("Use the COLLATE clause to set the collation explicitly.")));
87  }
88  else
89  Assert(!OidIsValid(def->collOid));
90 
91  attrList = lappend(attrList, def);
92  }
93  }
94 
95  /*
96  * Look up, check permissions on, and lock the creation namespace; also
97  * check for a preexisting view with the same name. This will also set
98  * relation->relpersistence to RELPERSISTENCE_TEMP if the selected
99  * namespace is temporary.
100  */
101  lockmode = replace ? AccessExclusiveLock : NoLock;
102  (void) RangeVarGetAndCheckCreationNamespace(relation, lockmode, &viewOid);
103 
104  if (OidIsValid(viewOid) && replace)
105  {
106  Relation rel;
108  List *atcmds = NIL;
109  AlterTableCmd *atcmd;
110  ObjectAddress address;
111 
112  /* Relation is already locked, but we must build a relcache entry. */
113  rel = relation_open(viewOid, NoLock);
114 
115  /* Make sure it *is* a view. */
116  if (rel->rd_rel->relkind != RELKIND_VIEW)
117  ereport(ERROR,
118  (errcode(ERRCODE_WRONG_OBJECT_TYPE),
119  errmsg("\"%s\" is not a view",
120  RelationGetRelationName(rel))));
121 
122  /* Also check it's not in use already */
123  CheckTableNotInUse(rel, "CREATE OR REPLACE VIEW");
124 
125  /*
126  * Due to the namespace visibility rules for temporary objects, we
127  * should only end up replacing a temporary view with another
128  * temporary view, and similarly for permanent views.
129  */
130  Assert(relation->relpersistence == rel->rd_rel->relpersistence);
131 
132  /*
133  * Create a tuple descriptor to compare against the existing view, and
134  * verify that the old column list is an initial prefix of the new
135  * column list.
136  */
137  descriptor = BuildDescForRelation(attrList);
139 
140  /*
141  * If new attributes have been added, we must add pg_attribute entries
142  * for them. It is convenient (although overkill) to use the ALTER
143  * TABLE ADD COLUMN infrastructure for this.
144  *
145  * Note that we must do this before updating the query for the view,
146  * since the rules system requires that the correct view columns be in
147  * place when defining the new rules.
148  *
149  * Also note that ALTER TABLE doesn't run parse transformation on
150  * AT_AddColumnToView commands. The ColumnDef we supply must be ready
151  * to execute as-is.
152  */
153  if (list_length(attrList) > rel->rd_att->natts)
154  {
155  ListCell *c;
156  int skip = rel->rd_att->natts;
157 
158  foreach(c, attrList)
159  {
160  if (skip > 0)
161  {
162  skip--;
163  continue;
164  }
165  atcmd = makeNode(AlterTableCmd);
166  atcmd->subtype = AT_AddColumnToView;
167  atcmd->def = (Node *) lfirst(c);
168  atcmds = lappend(atcmds, atcmd);
169  }
170 
171  /* EventTriggerAlterTableStart called by ProcessUtilitySlow */
172  AlterTableInternal(viewOid, atcmds, true);
173 
174  /* Make the new view columns visible */
176  }
177 
178  /*
179  * Update the query for the view.
180  *
181  * Note that we must do this before updating the view options, because
182  * the new options may not be compatible with the old view query (for
183  * example if we attempt to add the WITH CHECK OPTION, we require that
184  * the new view be automatically updatable, but the old view may not
185  * have been).
186  */
187  StoreViewQuery(viewOid, viewParse, replace);
188 
189  /* Make the new view query visible */
191 
192  /*
193  * Update the view's options.
194  *
195  * The new options list replaces the existing options list, even if
196  * it's empty.
197  */
198  atcmd = makeNode(AlterTableCmd);
199  atcmd->subtype = AT_ReplaceRelOptions;
200  atcmd->def = (Node *) options;
201  atcmds = list_make1(atcmd);
202 
203  /* EventTriggerAlterTableStart called by ProcessUtilitySlow */
204  AlterTableInternal(viewOid, atcmds, true);
205 
206  /*
207  * There is very little to do here to update the view's dependencies.
208  * Most view-level dependency relationships, such as those on the
209  * owner, schema, and associated composite type, aren't changing.
210  * Because we don't allow changing type or collation of an existing
211  * view column, those dependencies of the existing columns don't
212  * change either, while the AT_AddColumnToView machinery took care of
213  * adding such dependencies for new view columns. The dependencies of
214  * the view's query could have changed arbitrarily, but that was dealt
215  * with inside StoreViewQuery. What remains is only to check that
216  * view replacement is allowed when we're creating an extension.
217  */
218  ObjectAddressSet(address, RelationRelationId, viewOid);
219 
220  recordDependencyOnCurrentExtension(&address, true);
221 
222  /*
223  * Seems okay, so return the OID of the pre-existing view.
224  */
225  relation_close(rel, NoLock); /* keep the lock! */
226 
227  return address;
228  }
229  else
230  {
231  ObjectAddress address;
232 
233  /*
234  * Set the parameters for keys/inheritance etc. All of these are
235  * uninteresting for views...
236  */
237  createStmt->relation = relation;
238  createStmt->tableElts = attrList;
239  createStmt->inhRelations = NIL;
240  createStmt->constraints = NIL;
241  createStmt->options = options;
242  createStmt->oncommit = ONCOMMIT_NOOP;
243  createStmt->tablespacename = NULL;
244  createStmt->if_not_exists = false;
245 
246  /*
247  * Create the relation (this will error out if there's an existing
248  * view, so we don't need more code to complain if "replace" is
249  * false).
250  */
251  address = DefineRelation(createStmt, RELKIND_VIEW, InvalidOid, NULL,
252  NULL);
253  Assert(address.objectId != InvalidOid);
254 
255  /* Make the new view relation visible */
257 
258  /* Store the query for the view */
259  StoreViewQuery(address.objectId, viewParse, replace);
260 
261  return address;
262  }
263 }
264 
265 /*
266  * Verify that tupledesc associated with proposed new view definition
267  * matches tupledesc of old view. This is basically a cut-down version
268  * of equalTupleDescs(), with code added to generate specific complaints.
269  * Also, we allow the new tupledesc to have more columns than the old.
270  */
271 static void
273 {
274  int i;
275 
276  if (newdesc->natts < olddesc->natts)
277  ereport(ERROR,
278  (errcode(ERRCODE_INVALID_TABLE_DEFINITION),
279  errmsg("cannot drop columns from view")));
280 
281  for (i = 0; i < olddesc->natts; i++)
282  {
283  Form_pg_attribute newattr = TupleDescAttr(newdesc, i);
284  Form_pg_attribute oldattr = TupleDescAttr(olddesc, i);
285 
286  /* XXX msg not right, but we don't support DROP COL on view anyway */
287  if (newattr->attisdropped != oldattr->attisdropped)
288  ereport(ERROR,
289  (errcode(ERRCODE_INVALID_TABLE_DEFINITION),
290  errmsg("cannot drop columns from view")));
291 
292  if (strcmp(NameStr(newattr->attname), NameStr(oldattr->attname)) != 0)
293  ereport(ERROR,
294  (errcode(ERRCODE_INVALID_TABLE_DEFINITION),
295  errmsg("cannot change name of view column \"%s\" to \"%s\"",
296  NameStr(oldattr->attname),
297  NameStr(newattr->attname)),
298  errhint("Use ALTER VIEW ... RENAME COLUMN ... to change name of view column instead.")));
299 
300  /*
301  * We cannot allow type, typmod, or collation to change, since these
302  * properties may be embedded in Vars of other views/rules referencing
303  * this one. Other column attributes can be ignored.
304  */
305  if (newattr->atttypid != oldattr->atttypid ||
306  newattr->atttypmod != oldattr->atttypmod)
307  ereport(ERROR,
308  (errcode(ERRCODE_INVALID_TABLE_DEFINITION),
309  errmsg("cannot change data type of view column \"%s\" from %s to %s",
310  NameStr(oldattr->attname),
311  format_type_with_typemod(oldattr->atttypid,
312  oldattr->atttypmod),
313  format_type_with_typemod(newattr->atttypid,
314  newattr->atttypmod))));
315 
316  /*
317  * At this point, attcollations should be both valid or both invalid,
318  * so applying get_collation_name unconditionally should be fine.
319  */
320  if (newattr->attcollation != oldattr->attcollation)
321  ereport(ERROR,
322  (errcode(ERRCODE_INVALID_TABLE_DEFINITION),
323  errmsg("cannot change collation of view column \"%s\" from \"%s\" to \"%s\"",
324  NameStr(oldattr->attname),
325  get_collation_name(oldattr->attcollation),
326  get_collation_name(newattr->attcollation))));
327  }
328 
329  /*
330  * We ignore the constraint fields. The new view desc can't have any
331  * constraints, and the only ones that could be on the old view are
332  * defaults, which we are happy to leave in place.
333  */
334 }
335 
336 static void
337 DefineViewRules(Oid viewOid, Query *viewParse, bool replace)
338 {
339  /*
340  * Set up the ON SELECT rule. Since the query has already been through
341  * parse analysis, we use DefineQueryRewrite() directly.
342  */
344  viewOid,
345  NULL,
346  CMD_SELECT,
347  true,
348  replace,
349  list_make1(viewParse));
350 
351  /*
352  * Someday: automatic ON INSERT, etc
353  */
354 }
355 
356 /*
357  * DefineView
358  * Execute a CREATE VIEW command.
359  */
361 DefineView(ViewStmt *stmt, const char *queryString,
362  int stmt_location, int stmt_len)
363 {
364  RawStmt *rawstmt;
365  Query *viewParse;
366  RangeVar *view;
367  ListCell *cell;
368  bool check_option;
369  ObjectAddress address;
370 
371  /*
372  * Run parse analysis to convert the raw parse tree to a Query. Note this
373  * also acquires sufficient locks on the source table(s).
374  */
375  rawstmt = makeNode(RawStmt);
376  rawstmt->stmt = stmt->query;
377  rawstmt->stmt_location = stmt_location;
378  rawstmt->stmt_len = stmt_len;
379 
380  viewParse = parse_analyze_fixedparams(rawstmt, queryString, NULL, 0, NULL);
381 
382  /*
383  * The grammar should ensure that the result is a single SELECT Query.
384  * However, it doesn't forbid SELECT INTO, so we have to check for that.
385  */
386  if (!IsA(viewParse, Query))
387  elog(ERROR, "unexpected parse analysis result");
388  if (viewParse->utilityStmt != NULL &&
389  IsA(viewParse->utilityStmt, CreateTableAsStmt))
390  ereport(ERROR,
391  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
392  errmsg("views must not contain SELECT INTO")));
393  if (viewParse->commandType != CMD_SELECT)
394  elog(ERROR, "unexpected parse analysis result");
395 
396  /*
397  * Check for unsupported cases. These tests are redundant with ones in
398  * DefineQueryRewrite(), but that function will complain about a bogus ON
399  * SELECT rule, and we'd rather the message complain about a view.
400  */
401  if (viewParse->hasModifyingCTE)
402  ereport(ERROR,
403  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
404  errmsg("views must not contain data-modifying statements in WITH")));
405 
406  /*
407  * If the user specified the WITH CHECK OPTION, add it to the list of
408  * reloptions.
409  */
410  if (stmt->withCheckOption == LOCAL_CHECK_OPTION)
411  stmt->options = lappend(stmt->options,
412  makeDefElem("check_option",
413  (Node *) makeString("local"), -1));
414  else if (stmt->withCheckOption == CASCADED_CHECK_OPTION)
415  stmt->options = lappend(stmt->options,
416  makeDefElem("check_option",
417  (Node *) makeString("cascaded"), -1));
418 
419  /*
420  * Check that the view is auto-updatable if WITH CHECK OPTION was
421  * specified.
422  */
423  check_option = false;
424 
425  foreach(cell, stmt->options)
426  {
427  DefElem *defel = (DefElem *) lfirst(cell);
428 
429  if (strcmp(defel->defname, "check_option") == 0)
430  check_option = true;
431  }
432 
433  /*
434  * If the check option is specified, look to see if the view is actually
435  * auto-updatable or not.
436  */
437  if (check_option)
438  {
439  const char *view_updatable_error =
440  view_query_is_auto_updatable(viewParse, true);
441 
442  if (view_updatable_error)
443  ereport(ERROR,
444  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
445  errmsg("WITH CHECK OPTION is supported only on automatically updatable views"),
446  errhint("%s", _(view_updatable_error))));
447  }
448 
449  /*
450  * If a list of column names was given, run through and insert these into
451  * the actual query tree. - thomas 2000-03-08
452  */
453  if (stmt->aliases != NIL)
454  {
455  ListCell *alist_item = list_head(stmt->aliases);
456  ListCell *targetList;
457 
458  foreach(targetList, viewParse->targetList)
459  {
460  TargetEntry *te = lfirst_node(TargetEntry, targetList);
461 
462  /* junk columns don't get aliases */
463  if (te->resjunk)
464  continue;
465  te->resname = pstrdup(strVal(lfirst(alist_item)));
466  alist_item = lnext(stmt->aliases, alist_item);
467  if (alist_item == NULL)
468  break; /* done assigning aliases */
469  }
470 
471  if (alist_item != NULL)
472  ereport(ERROR,
473  (errcode(ERRCODE_SYNTAX_ERROR),
474  errmsg("CREATE VIEW specifies more column "
475  "names than columns")));
476  }
477 
478  /* Unlogged views are not sensible. */
479  if (stmt->view->relpersistence == RELPERSISTENCE_UNLOGGED)
480  ereport(ERROR,
481  (errcode(ERRCODE_SYNTAX_ERROR),
482  errmsg("views cannot be unlogged because they do not have storage")));
483 
484  /*
485  * If the user didn't explicitly ask for a temporary view, check whether
486  * we need one implicitly. We allow TEMP to be inserted automatically as
487  * long as the CREATE command is consistent with that --- no explicit
488  * schema name.
489  */
490  view = copyObject(stmt->view); /* don't corrupt original command */
491  if (view->relpersistence == RELPERSISTENCE_PERMANENT
492  && isQueryUsingTempRelation(viewParse))
493  {
494  view->relpersistence = RELPERSISTENCE_TEMP;
495  ereport(NOTICE,
496  (errmsg("view \"%s\" will be a temporary view",
497  view->relname)));
498  }
499 
500  /*
501  * Create the view relation
502  *
503  * NOTE: if it already exists and replace is false, the xact will be
504  * aborted.
505  */
506  address = DefineVirtualRelation(view, viewParse->targetList,
507  stmt->replace, stmt->options, viewParse);
508 
509  return address;
510 }
511 
512 /*
513  * Use the rules system to store the query for the view.
514  */
515 void
516 StoreViewQuery(Oid viewOid, Query *viewParse, bool replace)
517 {
518  /*
519  * Now create the rules associated with the view.
520  */
521  DefineViewRules(viewOid, viewParse, replace);
522 }
#define NameStr(name)
Definition: c.h:735
#define OidIsValid(objectId)
Definition: c.h:764
int errhint(const char *fmt,...)
Definition: elog.c:1316
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define _(x)
Definition: elog.c:91
#define ERROR
Definition: elog.h:39
#define NOTICE
Definition: elog.h:35
#define ereport(elevel,...)
Definition: elog.h:149
char * format_type_with_typemod(Oid type_oid, int32 typemod)
Definition: format_type.c:362
#define stmt
Definition: indent_codes.h:59
int i
Definition: isn.c:73
Assert(fmt[strlen(fmt) - 1] !='\n')
List * lappend(List *list, void *datum)
Definition: list.c:338
int LOCKMODE
Definition: lockdefs.h:26
#define NoLock
Definition: lockdefs.h:34
#define AccessExclusiveLock
Definition: lockdefs.h:43
char * get_collation_name(Oid colloid)
Definition: lsyscache.c:1061
bool type_is_collatable(Oid typid)
Definition: lsyscache.c:3063
DefElem * makeDefElem(char *name, Node *arg, int location)
Definition: makefuncs.c:549
ColumnDef * makeColumnDef(const char *colname, Oid typeOid, int32 typmod, Oid collOid)
Definition: makefuncs.c:493
char * pstrdup(const char *in)
Definition: mcxt.c:1644
Oid RangeVarGetAndCheckCreationNamespace(RangeVar *relation, LOCKMODE lockmode, Oid *existing_relation_id)
Definition: namespace.c:519
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:43
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:282
Oid exprCollation(const Node *expr)
Definition: nodeFuncs.c:786
#define IsA(nodeptr, _type_)
Definition: nodes.h:179
#define copyObject(obj)
Definition: nodes.h:244
@ CMD_SELECT
Definition: nodes.h:276
#define makeNode(_type_)
Definition: nodes.h:176
#define ObjectAddressSet(addr, class_id, object_id)
Definition: objectaddress.h:40
bool isQueryUsingTempRelation(Query *query)
@ AT_ReplaceRelOptions
Definition: parsenodes.h:2248
@ AT_AddColumnToView
Definition: parsenodes.h:2213
@ CASCADED_CHECK_OPTION
Definition: parsenodes.h:3611
@ LOCAL_CHECK_OPTION
Definition: parsenodes.h:3610
Query * parse_analyze_fixedparams(RawStmt *parseTree, const char *sourceText, const Oid *paramTypes, int numParams, QueryEnvironment *queryEnv)
Definition: analyze.c:107
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
static const struct exclude_list_item skip[]
Definition: pg_checksums.c:108
void recordDependencyOnCurrentExtension(const ObjectAddress *object, bool isReplace)
Definition: pg_depend.c:192
#define lfirst(lc)
Definition: pg_list.h:172
#define lfirst_node(type, lc)
Definition: pg_list.h:176
static int list_length(const List *l)
Definition: pg_list.h:152
#define NIL
Definition: pg_list.h:68
#define list_make1(x1)
Definition: pg_list.h:212
static ListCell * list_head(const List *l)
Definition: pg_list.h:128
static ListCell * lnext(const List *l, const ListCell *c)
Definition: pg_list.h:343
static char ** options
#define InvalidOid
Definition: postgres_ext.h:36
unsigned int Oid
Definition: postgres_ext.h:31
char * c
@ ONCOMMIT_NOOP
Definition: primnodes.h:49
#define RelationGetRelationName(relation)
Definition: rel.h:538
ObjectAddress DefineQueryRewrite(const char *rulename, Oid event_relid, Node *event_qual, CmdType event_type, bool is_instead, bool replace, List *action)
const char * view_query_is_auto_updatable(Query *viewquery, bool check_cols)
#define ViewSelectRuleName
void relation_close(Relation relation, LOCKMODE lockmode)
Definition: relation.c:206
Relation relation_open(Oid relationId, LOCKMODE lockmode)
Definition: relation.c:48
AlterTableType subtype
Definition: parsenodes.h:2290
char * colname
Definition: parsenodes.h:720
Oid collOid
Definition: parsenodes.h:736
List * tableElts
Definition: parsenodes.h:2513
OnCommitAction oncommit
Definition: parsenodes.h:2522
List * options
Definition: parsenodes.h:2521
bool if_not_exists
Definition: parsenodes.h:2525
List * inhRelations
Definition: parsenodes.h:2514
RangeVar * relation
Definition: parsenodes.h:2512
char * tablespacename
Definition: parsenodes.h:2523
List * constraints
Definition: parsenodes.h:2519
char * defname
Definition: parsenodes.h:809
Definition: pg_list.h:54
Definition: nodes.h:129
CmdType commandType
Definition: parsenodes.h:127
Node * utilityStmt
Definition: parsenodes.h:142
List * targetList
Definition: parsenodes.h:188
char * relname
Definition: primnodes.h:74
char relpersistence
Definition: primnodes.h:80
int stmt_len
Definition: parsenodes.h:1887
Node * stmt
Definition: parsenodes.h:1885
int stmt_location
Definition: parsenodes.h:1886
TupleDesc rd_att
Definition: rel.h:112
Form_pg_class rd_rel
Definition: rel.h:111
Expr * expr
Definition: primnodes.h:1895
void CheckTableNotInUse(Relation rel, const char *stmt)
Definition: tablecmds.c:4183
ObjectAddress DefineRelation(CreateStmt *stmt, char relkind, Oid ownerId, ObjectAddress *typaddress, const char *queryString)
Definition: tablecmds.c:674
void AlterTableInternal(Oid relid, List *cmds, bool recurse)
Definition: tablecmds.c:4299
TupleDesc BuildDescForRelation(const List *columns)
Definition: tupdesc.c:790
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92
String * makeString(char *str)
Definition: value.c:63
#define strVal(v)
Definition: value.h:82
static ObjectAddress DefineVirtualRelation(RangeVar *relation, List *tlist, bool replace, List *options, Query *viewParse)
Definition: view.c:50
static void checkViewTupleDesc(TupleDesc newdesc, TupleDesc olddesc)
Definition: view.c:272
static void DefineViewRules(Oid viewOid, Query *viewParse, bool replace)
Definition: view.c:337
ObjectAddress DefineView(ViewStmt *stmt, const char *queryString, int stmt_location, int stmt_len)
Definition: view.c:361
void StoreViewQuery(Oid viewOid, Query *viewParse, bool replace)
Definition: view.c:516
void CommandCounterIncrement(void)
Definition: xact.c:1078