PostgreSQL Source Code  git master
matview.h File Reference
#include "catalog/objectaddress.h"
#include "nodes/params.h"
#include "nodes/parsenodes.h"
#include "tcop/dest.h"
#include "utils/relcache.h"
Include dependency graph for matview.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void SetMatViewPopulatedState (Relation relation, bool newstate)
 
ObjectAddress ExecRefreshMatView (RefreshMatViewStmt *stmt, const char *queryString, ParamListInfo params, QueryCompletion *qc)
 
DestReceiverCreateTransientRelDestReceiver (Oid transientoid)
 
bool MatViewIncrementalMaintenanceIsEnabled (void)
 

Function Documentation

◆ CreateTransientRelDestReceiver()

DestReceiver* CreateTransientRelDestReceiver ( Oid  transientoid)

Definition at line 436 of file matview.c.

437 {
439 
440  self->pub.receiveSlot = transientrel_receive;
441  self->pub.rStartup = transientrel_startup;
442  self->pub.rShutdown = transientrel_shutdown;
443  self->pub.rDestroy = transientrel_destroy;
444  self->pub.mydest = DestTransientRel;
445  self->transientoid = transientoid;
446 
447  return (DestReceiver *) self;
448 }
@ DestTransientRel
Definition: dest.h:97
static void transientrel_destroy(DestReceiver *self)
Definition: matview.c:525
static void transientrel_startup(DestReceiver *self, int operation, TupleDesc typeinfo)
Definition: matview.c:454
static bool transientrel_receive(TupleTableSlot *slot, DestReceiver *self)
Definition: matview.c:480
static void transientrel_shutdown(DestReceiver *self)
Definition: matview.c:508
void * palloc0(Size size)
Definition: mcxt.c:1241

References DestTransientRel, palloc0(), transientrel_destroy(), transientrel_receive(), transientrel_shutdown(), and transientrel_startup().

Referenced by CreateDestReceiver(), and ExecRefreshMatView().

◆ ExecRefreshMatView()

ObjectAddress ExecRefreshMatView ( RefreshMatViewStmt stmt,
const char *  queryString,
ParamListInfo  params,
QueryCompletion qc 
)

Definition at line 138 of file matview.c.

140 {
141  Oid matviewOid;
142  Relation matviewRel;
143  RewriteRule *rule;
144  List *actions;
145  Query *dataQuery;
146  Oid tableSpace;
147  Oid relowner;
148  Oid OIDNewHeap;
150  uint64 processed = 0;
151  bool concurrent;
152  LOCKMODE lockmode;
153  char relpersistence;
154  Oid save_userid;
155  int save_sec_context;
156  int save_nestlevel;
157  ObjectAddress address;
158 
159  /* Determine strength of lock needed. */
160  concurrent = stmt->concurrent;
161  lockmode = concurrent ? ExclusiveLock : AccessExclusiveLock;
162 
163  /*
164  * Get a lock until end of transaction.
165  */
166  matviewOid = RangeVarGetRelidExtended(stmt->relation,
167  lockmode, 0,
169  NULL);
170  matviewRel = table_open(matviewOid, NoLock);
171  relowner = matviewRel->rd_rel->relowner;
172 
173  /*
174  * Switch to the owner's userid, so that any functions are run as that
175  * user. Also lock down security-restricted operations and arrange to
176  * make GUC variable changes local to this command.
177  */
178  GetUserIdAndSecContext(&save_userid, &save_sec_context);
179  SetUserIdAndSecContext(relowner,
180  save_sec_context | SECURITY_RESTRICTED_OPERATION);
181  save_nestlevel = NewGUCNestLevel();
182 
183  /* Make sure it is a materialized view. */
184  if (matviewRel->rd_rel->relkind != RELKIND_MATVIEW)
185  ereport(ERROR,
186  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
187  errmsg("\"%s\" is not a materialized view",
188  RelationGetRelationName(matviewRel))));
189 
190  /* Check that CONCURRENTLY is not specified if not populated. */
191  if (concurrent && !RelationIsPopulated(matviewRel))
192  ereport(ERROR,
193  (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
194  errmsg("CONCURRENTLY cannot be used when the materialized view is not populated")));
195 
196  /* Check that conflicting options have not been specified. */
197  if (concurrent && stmt->skipData)
198  ereport(ERROR,
199  (errcode(ERRCODE_SYNTAX_ERROR),
200  errmsg("%s and %s options cannot be used together",
201  "CONCURRENTLY", "WITH NO DATA")));
202 
203  /*
204  * Check that everything is correct for a refresh. Problems at this point
205  * are internal errors, so elog is sufficient.
206  */
207  if (matviewRel->rd_rel->relhasrules == false ||
208  matviewRel->rd_rules->numLocks < 1)
209  elog(ERROR,
210  "materialized view \"%s\" is missing rewrite information",
211  RelationGetRelationName(matviewRel));
212 
213  if (matviewRel->rd_rules->numLocks > 1)
214  elog(ERROR,
215  "materialized view \"%s\" has too many rules",
216  RelationGetRelationName(matviewRel));
217 
218  rule = matviewRel->rd_rules->rules[0];
219  if (rule->event != CMD_SELECT || !(rule->isInstead))
220  elog(ERROR,
221  "the rule for materialized view \"%s\" is not a SELECT INSTEAD OF rule",
222  RelationGetRelationName(matviewRel));
223 
224  actions = rule->actions;
225  if (list_length(actions) != 1)
226  elog(ERROR,
227  "the rule for materialized view \"%s\" is not a single action",
228  RelationGetRelationName(matviewRel));
229 
230  /*
231  * Check that there is a unique index with no WHERE clause on one or more
232  * columns of the materialized view if CONCURRENTLY is specified.
233  */
234  if (concurrent)
235  {
236  List *indexoidlist = RelationGetIndexList(matviewRel);
237  ListCell *indexoidscan;
238  bool hasUniqueIndex = false;
239 
240  foreach(indexoidscan, indexoidlist)
241  {
242  Oid indexoid = lfirst_oid(indexoidscan);
243  Relation indexRel;
244 
245  indexRel = index_open(indexoid, AccessShareLock);
246  hasUniqueIndex = is_usable_unique_index(indexRel);
247  index_close(indexRel, AccessShareLock);
248  if (hasUniqueIndex)
249  break;
250  }
251 
252  list_free(indexoidlist);
253 
254  if (!hasUniqueIndex)
255  ereport(ERROR,
256  (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
257  errmsg("cannot refresh materialized view \"%s\" concurrently",
259  RelationGetRelationName(matviewRel))),
260  errhint("Create a unique index with no WHERE clause on one or more columns of the materialized view.")));
261  }
262 
263  /*
264  * The stored query was rewritten at the time of the MV definition, but
265  * has not been scribbled on by the planner.
266  */
267  dataQuery = linitial_node(Query, actions);
268 
269  /*
270  * Check for active uses of the relation in the current transaction, such
271  * as open scans.
272  *
273  * NB: We count on this to protect us against problems with refreshing the
274  * data using TABLE_INSERT_FROZEN.
275  */
276  CheckTableNotInUse(matviewRel, "REFRESH MATERIALIZED VIEW");
277 
278  /*
279  * Tentatively mark the matview as populated or not (this will roll back
280  * if we fail later).
281  */
282  SetMatViewPopulatedState(matviewRel, !stmt->skipData);
283 
284  /* Concurrent refresh builds new data in temp tablespace, and does diff. */
285  if (concurrent)
286  {
287  tableSpace = GetDefaultTablespace(RELPERSISTENCE_TEMP, false);
288  relpersistence = RELPERSISTENCE_TEMP;
289  }
290  else
291  {
292  tableSpace = matviewRel->rd_rel->reltablespace;
293  relpersistence = matviewRel->rd_rel->relpersistence;
294  }
295 
296  /*
297  * Create the transient table that will receive the regenerated data. Lock
298  * it against access by any other process until commit (by which time it
299  * will be gone).
300  */
301  OIDNewHeap = make_new_heap(matviewOid, tableSpace,
302  matviewRel->rd_rel->relam,
303  relpersistence, ExclusiveLock);
305  dest = CreateTransientRelDestReceiver(OIDNewHeap);
306 
307  /* Generate the data, if wanted. */
308  if (!stmt->skipData)
309  processed = refresh_matview_datafill(dest, dataQuery, queryString);
310 
311  /* Make the matview match the newly generated data. */
312  if (concurrent)
313  {
314  int old_depth = matview_maintenance_depth;
315 
316  PG_TRY();
317  {
318  refresh_by_match_merge(matviewOid, OIDNewHeap, relowner,
319  save_sec_context);
320  }
321  PG_CATCH();
322  {
323  matview_maintenance_depth = old_depth;
324  PG_RE_THROW();
325  }
326  PG_END_TRY();
327  Assert(matview_maintenance_depth == old_depth);
328  }
329  else
330  {
331  refresh_by_heap_swap(matviewOid, OIDNewHeap, relpersistence);
332 
333  /*
334  * Inform cumulative stats system about our activity: basically, we
335  * truncated the matview and inserted some new data. (The concurrent
336  * code path above doesn't need to worry about this because the
337  * inserts and deletes it issues get counted by lower-level code.)
338  */
339  pgstat_count_truncate(matviewRel);
340  if (!stmt->skipData)
341  pgstat_count_heap_insert(matviewRel, processed);
342  }
343 
344  table_close(matviewRel, NoLock);
345 
346  /* Roll back any GUC changes */
347  AtEOXact_GUC(false, save_nestlevel);
348 
349  /* Restore userid and security context */
350  SetUserIdAndSecContext(save_userid, save_sec_context);
351 
352  ObjectAddressSet(address, RelationRelationId, matviewOid);
353 
354  /*
355  * Save the rowcount so that pg_stat_statements can track the total number
356  * of rows processed by REFRESH MATERIALIZED VIEW command. Note that we
357  * still don't display the rowcount in the command completion tag output,
358  * i.e., the display_rowcount flag of CMDTAG_REFRESH_MATERIALIZED_VIEW
359  * command tag is left false in cmdtaglist.h. Otherwise, the change of
360  * completion tag output might break applications using it.
361  */
362  if (qc)
363  SetQueryCompletion(qc, CMDTAG_REFRESH_MATERIALIZED_VIEW, processed);
364 
365  return address;
366 }
Oid GetDefaultTablespace(char relpersistence, bool partitioned)
Definition: tablespace.c:1149
Oid make_new_heap(Oid OIDOldHeap, Oid NewTableSpace, Oid NewAccessMethod, char relpersistence, LOCKMODE lockmode)
Definition: cluster.c:690
static void SetQueryCompletion(QueryCompletion *qc, CommandTag commandTag, uint64 nprocessed)
Definition: cmdtag.h:38
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 PG_RE_THROW()
Definition: elog.h:411
#define PG_TRY(...)
Definition: elog.h:370
#define PG_END_TRY(...)
Definition: elog.h:395
#define ERROR
Definition: elog.h:39
#define PG_CATCH(...)
Definition: elog.h:380
#define ereport(elevel,...)
Definition: elog.h:149
int NewGUCNestLevel(void)
Definition: guc.c:2201
void AtEOXact_GUC(bool isCommit, int nestLevel)
Definition: guc.c:2215
#define stmt
Definition: indent_codes.h:59
void index_close(Relation relation, LOCKMODE lockmode)
Definition: indexam.c:158
Relation index_open(Oid relationId, LOCKMODE lockmode)
Definition: indexam.c:132
Assert(fmt[strlen(fmt) - 1] !='\n')
void list_free(List *list)
Definition: list.c:1545
void LockRelationOid(Oid relid, LOCKMODE lockmode)
Definition: lmgr.c:109
int LOCKMODE
Definition: lockdefs.h:26
#define NoLock
Definition: lockdefs.h:34
#define AccessExclusiveLock
Definition: lockdefs.h:43
#define AccessShareLock
Definition: lockdefs.h:36
#define ExclusiveLock
Definition: lockdefs.h:42
char * get_namespace_name(Oid nspid)
Definition: lsyscache.c:3324
static uint64 refresh_matview_datafill(DestReceiver *dest, Query *query, const char *queryString)
Definition: matview.c:377
static void refresh_by_match_merge(Oid matviewOid, Oid tempOid, Oid relowner, int save_sec_context)
Definition: matview.c:585
DestReceiver * CreateTransientRelDestReceiver(Oid transientoid)
Definition: matview.c:436
static bool is_usable_unique_index(Relation indexRel)
Definition: matview.c:864
void SetMatViewPopulatedState(Relation relation, bool newstate)
Definition: matview.c:84
static int matview_maintenance_depth
Definition: matview.c:61
static void refresh_by_heap_swap(Oid matviewOid, Oid OIDNewHeap, char relpersistence)
Definition: matview.c:854
#define SECURITY_RESTRICTED_OPERATION
Definition: miscadmin.h:305
void GetUserIdAndSecContext(Oid *userid, int *sec_context)
Definition: miscinit.c:631
void SetUserIdAndSecContext(Oid userid, int sec_context)
Definition: miscinit.c:638
Oid RangeVarGetRelidExtended(const RangeVar *relation, LOCKMODE lockmode, uint32 flags, RangeVarGetRelidCallback callback, void *callback_arg)
Definition: namespace.c:239
@ CMD_SELECT
Definition: nodes.h:276
#define ObjectAddressSet(addr, class_id, object_id)
Definition: objectaddress.h:40
static int list_length(const List *l)
Definition: pg_list.h:152
#define linitial_node(type, l)
Definition: pg_list.h:181
#define lfirst_oid(lc)
Definition: pg_list.h:174
void pgstat_count_heap_insert(Relation rel, PgStat_Counter n)
void pgstat_count_truncate(Relation rel)
unsigned int Oid
Definition: postgres_ext.h:31
#define RelationGetRelationName(relation)
Definition: rel.h:537
#define RelationIsPopulated(relation)
Definition: rel.h:677
#define RelationGetNamespace(relation)
Definition: rel.h:544
List * RelationGetIndexList(Relation relation)
Definition: relcache.c:4739
char * quote_qualified_identifier(const char *qualifier, const char *ident)
Definition: ruleutils.c:11835
Definition: pg_list.h:54
RuleLock * rd_rules
Definition: rel.h:114
Form_pg_class rd_rel
Definition: rel.h:110
RewriteRule ** rules
Definition: prs2lock.h:43
int numLocks
Definition: prs2lock.h:42
Definition: localtime.c:73
void table_close(Relation relation, LOCKMODE lockmode)
Definition: table.c:126
Relation table_open(Oid relationId, LOCKMODE lockmode)
Definition: table.c:40
void CheckTableNotInUse(Relation rel, const char *stmt)
Definition: tablecmds.c:4080
void RangeVarCallbackMaintainsTable(const RangeVar *relation, Oid relId, Oid oldRelId, void *arg)
Definition: tablecmds.c:16958

References AccessExclusiveLock, AccessShareLock, Assert(), AtEOXact_GUC(), CheckTableNotInUse(), CMD_SELECT, CreateTransientRelDestReceiver(), generate_unaccent_rules::dest, elog(), ereport, errcode(), errhint(), errmsg(), ERROR, ExclusiveLock, get_namespace_name(), GetDefaultTablespace(), GetUserIdAndSecContext(), index_close(), index_open(), is_usable_unique_index(), lfirst_oid, linitial_node, list_free(), list_length(), LockRelationOid(), make_new_heap(), matview_maintenance_depth, NewGUCNestLevel(), NoLock, RuleLock::numLocks, ObjectAddressSet, PG_CATCH, PG_END_TRY, PG_RE_THROW, PG_TRY, pgstat_count_heap_insert(), pgstat_count_truncate(), quote_qualified_identifier(), RangeVarCallbackMaintainsTable(), RangeVarGetRelidExtended(), RelationData::rd_rel, RelationData::rd_rules, refresh_by_heap_swap(), refresh_by_match_merge(), refresh_matview_datafill(), RelationGetIndexList(), RelationGetNamespace, RelationGetRelationName, RelationIsPopulated, RuleLock::rules, SECURITY_RESTRICTED_OPERATION, SetMatViewPopulatedState(), SetQueryCompletion(), SetUserIdAndSecContext(), stmt, table_close(), and table_open().

Referenced by ProcessUtilitySlow().

◆ MatViewIncrementalMaintenanceIsEnabled()

bool MatViewIncrementalMaintenanceIsEnabled ( void  )

Definition at line 918 of file matview.c.

919 {
920  return matview_maintenance_depth > 0;
921 }

References matview_maintenance_depth.

Referenced by CheckValidResultRel().

◆ SetMatViewPopulatedState()

void SetMatViewPopulatedState ( Relation  relation,
bool  newstate 
)

Definition at line 84 of file matview.c.

85 {
86  Relation pgrel;
87  HeapTuple tuple;
88 
89  Assert(relation->rd_rel->relkind == RELKIND_MATVIEW);
90 
91  /*
92  * Update relation's pg_class entry. Crucial side-effect: other backends
93  * (and this one too!) are sent SI message to make them rebuild relcache
94  * entries.
95  */
96  pgrel = table_open(RelationRelationId, RowExclusiveLock);
99  if (!HeapTupleIsValid(tuple))
100  elog(ERROR, "cache lookup failed for relation %u",
101  RelationGetRelid(relation));
102 
103  ((Form_pg_class) GETSTRUCT(tuple))->relispopulated = newstate;
104 
105  CatalogTupleUpdate(pgrel, &tuple->t_self, tuple);
106 
107  heap_freetuple(tuple);
109 
110  /*
111  * Advance command counter to make the updated pg_class row locally
112  * visible.
113  */
115 }
void heap_freetuple(HeapTuple htup)
Definition: heaptuple.c:1338
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
void CatalogTupleUpdate(Relation heapRel, ItemPointer otid, HeapTuple tup)
Definition: indexing.c:313
#define RowExclusiveLock
Definition: lockdefs.h:38
FormData_pg_class * Form_pg_class
Definition: pg_class.h:153
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
static struct state * newstate(struct nfa *nfa)
Definition: regc_nfa.c:137
#define RelationGetRelid(relation)
Definition: rel.h:503
ItemPointerData t_self
Definition: htup.h:65
#define SearchSysCacheCopy1(cacheId, key1)
Definition: syscache.h:182
@ RELOID
Definition: syscache.h:89
void CommandCounterIncrement(void)
Definition: xact.c:1078

References Assert(), CatalogTupleUpdate(), CommandCounterIncrement(), elog(), ERROR, GETSTRUCT, heap_freetuple(), HeapTupleIsValid, newstate(), ObjectIdGetDatum(), RelationData::rd_rel, RelationGetRelid, RELOID, RowExclusiveLock, SearchSysCacheCopy1, HeapTupleData::t_self, table_close(), and table_open().

Referenced by ExecRefreshMatView(), and intorel_startup().