Age Owner TLA Line data Source code
1 : /*-------------------------------------------------------------------------
2 : *
3 : * indexcmds.c
4 : * POSTGRES define and remove index code.
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/indexcmds.c
12 : *
13 : *-------------------------------------------------------------------------
14 : */
15 :
16 : #include "postgres.h"
17 :
18 : #include "access/amapi.h"
19 : #include "access/heapam.h"
20 : #include "access/htup_details.h"
21 : #include "access/reloptions.h"
22 : #include "access/sysattr.h"
23 : #include "access/tableam.h"
24 : #include "access/xact.h"
25 : #include "catalog/catalog.h"
26 : #include "catalog/index.h"
27 : #include "catalog/indexing.h"
28 : #include "catalog/pg_am.h"
29 : #include "catalog/pg_authid.h"
30 : #include "catalog/pg_constraint.h"
31 : #include "catalog/pg_database.h"
32 : #include "catalog/pg_inherits.h"
33 : #include "catalog/pg_namespace.h"
34 : #include "catalog/pg_opclass.h"
35 : #include "catalog/pg_opfamily.h"
36 : #include "catalog/pg_tablespace.h"
37 : #include "catalog/pg_type.h"
38 : #include "commands/comment.h"
39 : #include "commands/dbcommands.h"
40 : #include "commands/defrem.h"
41 : #include "commands/event_trigger.h"
42 : #include "commands/progress.h"
43 : #include "commands/tablecmds.h"
44 : #include "commands/tablespace.h"
45 : #include "mb/pg_wchar.h"
46 : #include "miscadmin.h"
47 : #include "nodes/makefuncs.h"
48 : #include "nodes/nodeFuncs.h"
49 : #include "optimizer/optimizer.h"
50 : #include "parser/parse_coerce.h"
51 : #include "parser/parse_func.h"
52 : #include "parser/parse_oper.h"
53 : #include "partitioning/partdesc.h"
54 : #include "pgstat.h"
55 : #include "rewrite/rewriteManip.h"
56 : #include "storage/lmgr.h"
57 : #include "storage/proc.h"
58 : #include "storage/procarray.h"
59 : #include "storage/sinvaladt.h"
60 : #include "utils/acl.h"
61 : #include "utils/builtins.h"
62 : #include "utils/fmgroids.h"
63 : #include "utils/guc.h"
64 : #include "utils/inval.h"
65 : #include "utils/lsyscache.h"
66 : #include "utils/memutils.h"
67 : #include "utils/partcache.h"
68 : #include "utils/pg_rusage.h"
69 : #include "utils/regproc.h"
70 : #include "utils/snapmgr.h"
71 : #include "utils/syscache.h"
72 :
73 :
74 : /* non-export function prototypes */
75 : static bool CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts);
76 : static void CheckPredicate(Expr *predicate);
77 : static void ComputeIndexAttrs(IndexInfo *indexInfo,
78 : Oid *typeOidP,
79 : Oid *collationOidP,
80 : Oid *classOidP,
81 : int16 *colOptionP,
82 : List *attList,
83 : List *exclusionOpNames,
84 : Oid relId,
85 : const char *accessMethodName, Oid accessMethodId,
86 : bool amcanorder,
87 : bool isconstraint,
88 : Oid ddl_userid,
89 : int ddl_sec_context,
90 : int *ddl_save_nestlevel);
91 : static char *ChooseIndexName(const char *tabname, Oid namespaceId,
92 : List *colnames, List *exclusionOpNames,
93 : bool primary, bool isconstraint);
94 : static char *ChooseIndexNameAddition(List *colnames);
95 : static List *ChooseIndexColumnNames(List *indexElems);
96 : static void ReindexIndex(RangeVar *indexRelation, ReindexParams *params,
97 : bool isTopLevel);
98 : static void RangeVarCallbackForReindexIndex(const RangeVar *relation,
99 : Oid relId, Oid oldRelId, void *arg);
100 : static Oid ReindexTable(RangeVar *relation, ReindexParams *params,
101 : bool isTopLevel);
102 : static void ReindexMultipleTables(const char *objectName,
103 : ReindexObjectType objectKind, ReindexParams *params);
104 : static void reindex_error_callback(void *arg);
105 : static void ReindexPartitions(Oid relid, ReindexParams *params,
106 : bool isTopLevel);
107 : static void ReindexMultipleInternal(List *relids,
108 : ReindexParams *params);
109 : static bool ReindexRelationConcurrently(Oid relationOid,
110 : ReindexParams *params);
111 : static void update_relispartition(Oid relationId, bool newval);
112 : static inline void set_indexsafe_procflags(void);
113 :
114 : /*
115 : * callback argument type for RangeVarCallbackForReindexIndex()
116 : */
117 : struct ReindexIndexCallbackState
118 : {
119 : ReindexParams params; /* options from statement */
120 : Oid locked_table_oid; /* tracks previously locked table */
121 : };
122 :
123 : /*
124 : * callback arguments for reindex_error_callback()
125 : */
126 : typedef struct ReindexErrorInfo
127 : {
128 : char *relname;
129 : char *relnamespace;
130 : char relkind;
131 : } ReindexErrorInfo;
132 :
133 : /*
134 : * CheckIndexCompatible
135 : * Determine whether an existing index definition is compatible with a
136 : * prospective index definition, such that the existing index storage
137 : * could become the storage of the new index, avoiding a rebuild.
138 : *
139 : * 'oldId': the OID of the existing index
140 : * 'accessMethodName': name of the AM to use.
141 : * 'attributeList': a list of IndexElem specifying columns and expressions
142 : * to index on.
143 : * 'exclusionOpNames': list of names of exclusion-constraint operators,
144 : * or NIL if not an exclusion constraint.
145 : *
146 : * This is tailored to the needs of ALTER TABLE ALTER TYPE, which recreates
147 : * any indexes that depended on a changing column from their pg_get_indexdef
148 : * or pg_get_constraintdef definitions. We omit some of the sanity checks of
149 : * DefineIndex. We assume that the old and new indexes have the same number
150 : * of columns and that if one has an expression column or predicate, both do.
151 : * Errors arising from the attribute list still apply.
152 : *
153 : * Most column type changes that can skip a table rewrite do not invalidate
154 : * indexes. We acknowledge this when all operator classes, collations and
155 : * exclusion operators match. Though we could further permit intra-opfamily
156 : * changes for btree and hash indexes, that adds subtle complexity with no
157 : * concrete benefit for core types. Note, that INCLUDE columns aren't
158 : * checked by this function, for them it's enough that table rewrite is
159 : * skipped.
160 : *
161 : * When a comparison or exclusion operator has a polymorphic input type, the
162 : * actual input types must also match. This defends against the possibility
163 : * that operators could vary behavior in response to get_fn_expr_argtype().
164 : * At present, this hazard is theoretical: check_exclusion_constraint() and
165 : * all core index access methods decline to set fn_expr for such calls.
166 : *
167 : * We do not yet implement a test to verify compatibility of expression
168 : * columns or predicates, so assume any such index is incompatible.
169 : */
170 : bool
4283 rhaas 171 GIC 51 : CheckIndexCompatible(Oid oldId,
172 : const char *accessMethodName,
173 : List *attributeList,
174 : List *exclusionOpNames)
4283 rhaas 175 ECB : {
176 : bool isconstraint;
177 : Oid *typeObjectId;
178 : Oid *collationObjectId;
179 : Oid *classObjectId;
180 : Oid accessMethodId;
181 : Oid relationId;
182 : HeapTuple tuple;
183 : Form_pg_index indexForm;
184 : Form_pg_am accessMethodForm;
185 : IndexAmRoutine *amRoutine;
186 : bool amcanorder;
187 : bool amsummarizing;
188 : int16 *coloptions;
189 : IndexInfo *indexInfo;
190 : int numberOfAttributes;
191 : int old_natts;
4283 rhaas 192 GIC 51 : bool ret = true;
193 : oidvector *old_indclass;
194 : oidvector *old_indcollation;
195 : Relation irel;
4283 rhaas 196 ECB : int i;
197 : Datum d;
198 :
199 : /* Caller should already have the relation locked in some way. */
3338 rhaas 200 GIC 51 : relationId = IndexGetRelation(oldId, false);
201 :
202 : /*
203 : * We can pretend isconstraint = false unconditionally. It only serves to
4283 rhaas 204 ECB : * decide the text of an error message that should never happen for us.
205 : */
4283 rhaas 206 GIC 51 : isconstraint = false;
207 :
208 51 : numberOfAttributes = list_length(attributeList);
209 51 : Assert(numberOfAttributes > 0);
4283 rhaas 210 CBC 51 : Assert(numberOfAttributes <= INDEX_MAX_KEYS);
211 :
4283 rhaas 212 ECB : /* look up the access method */
4283 rhaas 213 CBC 51 : tuple = SearchSysCache1(AMNAME, PointerGetDatum(accessMethodName));
214 51 : if (!HeapTupleIsValid(tuple))
4283 rhaas 215 UIC 0 : ereport(ERROR,
216 : (errcode(ERRCODE_UNDEFINED_OBJECT),
4283 rhaas 217 ECB : errmsg("access method \"%s\" does not exist",
218 : accessMethodName)));
4283 rhaas 219 GBC 51 : accessMethodForm = (Form_pg_am) GETSTRUCT(tuple);
1601 andres 220 GIC 51 : accessMethodId = accessMethodForm->oid;
2639 tgl 221 51 : amRoutine = GetIndexAmRoutine(accessMethodForm->amhandler);
4283 rhaas 222 51 : ReleaseSysCache(tuple);
4283 rhaas 223 ECB :
2639 tgl 224 CBC 51 : amcanorder = amRoutine->amcanorder;
20 tomas.vondra 225 GNC 51 : amsummarizing = amRoutine->amsummarizing;
2639 tgl 226 ECB :
4283 rhaas 227 : /*
228 : * Compute the operator classes, collations, and exclusion operators for
3955 bruce 229 : * the new index, so we can test whether it's compatible with the existing
230 : * one. Note that ComputeIndexAttrs might fail here, but that's OK:
231 : * DefineIndex would have failed later. Our attributeList contains only
232 : * key attributes, thus we're filling ii_NumIndexAttrs and
233 : * ii_NumIndexKeyAttrs with same value.
234 : */
1350 michael 235 GIC 51 : indexInfo = makeIndexInfo(numberOfAttributes, numberOfAttributes,
236 : accessMethodId, NIL, NIL, false, false,
237 : false, false, amsummarizing);
209 peter 238 GNC 51 : typeObjectId = palloc_array(Oid, numberOfAttributes);
239 51 : collationObjectId = palloc_array(Oid, numberOfAttributes);
240 51 : classObjectId = palloc_array(Oid, numberOfAttributes);
241 51 : coloptions = palloc_array(int16, numberOfAttributes);
4092 rhaas 242 GIC 51 : ComputeIndexAttrs(indexInfo,
243 : typeObjectId, collationObjectId, classObjectId,
4283 rhaas 244 ECB : coloptions, attributeList,
245 : exclusionOpNames, relationId,
246 : accessMethodName, accessMethodId,
288 noah 247 : amcanorder, isconstraint, InvalidOid, 0, NULL);
4283 rhaas 248 :
249 :
250 : /* Get the soon-obsolete pg_index tuple. */
4283 rhaas 251 GIC 51 : tuple = SearchSysCache1(INDEXRELID, ObjectIdGetDatum(oldId));
252 51 : if (!HeapTupleIsValid(tuple))
4283 rhaas 253 UIC 0 : elog(ERROR, "cache lookup failed for index %u", oldId);
3784 tgl 254 GIC 51 : indexForm = (Form_pg_index) GETSTRUCT(tuple);
255 :
256 : /*
3784 tgl 257 ECB : * We don't assess expressions or predicates; assume incompatibility.
258 : * Also, if the index is invalid for any reason, treat it as incompatible.
3784 tgl 259 EUB : */
1838 andrew 260 CBC 102 : if (!(heap_attisnull(tuple, Anum_pg_index_indpred, NULL) &&
1838 andrew 261 GIC 51 : heap_attisnull(tuple, Anum_pg_index_indexprs, NULL) &&
1564 peter_e 262 51 : indexForm->indisvalid))
263 : {
4283 rhaas 264 UIC 0 : ReleaseSysCache(tuple);
265 0 : return false;
4283 rhaas 266 ECB : }
267 :
4092 268 : /* Any change in operator class or collation breaks compatibility. */
1828 teodor 269 GIC 51 : old_natts = indexForm->indnkeyatts;
4283 rhaas 270 GBC 51 : Assert(old_natts == numberOfAttributes);
4283 rhaas 271 EUB :
15 dgustafsson 272 GNC 51 : d = SysCacheGetAttrNotNull(INDEXRELID, tuple, Anum_pg_index_indcollation);
4283 rhaas 273 GIC 51 : old_indcollation = (oidvector *) DatumGetPointer(d);
4283 rhaas 274 ECB :
15 dgustafsson 275 GNC 51 : d = SysCacheGetAttrNotNull(INDEXRELID, tuple, Anum_pg_index_indclass);
4283 rhaas 276 CBC 51 : old_indclass = (oidvector *) DatumGetPointer(d);
4283 rhaas 277 ECB :
4092 rhaas 278 GIC 102 : ret = (memcmp(old_indclass->values, classObjectId,
4092 rhaas 279 CBC 102 : old_natts * sizeof(Oid)) == 0 &&
280 51 : memcmp(old_indcollation->values, collationObjectId,
281 : old_natts * sizeof(Oid)) == 0);
4283 rhaas 282 ECB :
4283 rhaas 283 CBC 51 : ReleaseSysCache(tuple);
4283 rhaas 284 ECB :
4091 rhaas 285 GIC 51 : if (!ret)
4091 rhaas 286 UIC 0 : return false;
4091 rhaas 287 ECB :
288 : /* For polymorphic opcintype, column type changes break compatibility. */
3955 bruce 289 CBC 51 : irel = index_open(oldId, AccessShareLock); /* caller probably has a lock */
4091 rhaas 290 GBC 105 : for (i = 0; i < old_natts; i++)
291 : {
4091 rhaas 292 GIC 54 : if (IsPolymorphicType(get_opclass_input_type(classObjectId[i])) &&
2058 andres 293 LBC 0 : TupleDescAttr(irel->rd_att, i)->atttypid != typeObjectId[i])
4091 rhaas 294 ECB : {
4091 rhaas 295 UIC 0 : ret = false;
4091 rhaas 296 LBC 0 : break;
4091 rhaas 297 EUB : }
298 : }
4092 299 :
1105 akorotkov 300 : /* Any change in opclass options break compatibility. */
1105 akorotkov 301 GIC 51 : if (ret)
302 : {
303 51 : Datum *opclassOptions = RelationGetIndexRawAttOptions(irel);
304 :
1105 akorotkov 305 CBC 51 : ret = CompareOpclassOptions(opclassOptions,
306 : indexInfo->ii_OpclassOptions, old_natts);
1105 akorotkov 307 ECB :
1105 akorotkov 308 GIC 51 : if (opclassOptions)
1105 akorotkov 309 LBC 0 : pfree(opclassOptions);
310 : }
311 :
4092 rhaas 312 ECB : /* Any change in exclusion operator selections breaks compatibility. */
4092 rhaas 313 GBC 51 : if (ret && indexInfo->ii_ExclusionOps != NULL)
314 : {
315 : Oid *old_operators,
316 : *old_procs;
4283 rhaas 317 ECB : uint16 *old_strats;
318 :
4283 rhaas 319 UIC 0 : RelationGetExclusionInfo(irel, &old_operators, &old_procs, &old_strats);
4092 320 0 : ret = memcmp(old_operators, indexInfo->ii_ExclusionOps,
321 : old_natts * sizeof(Oid)) == 0;
322 :
4092 rhaas 323 EUB : /* Require an exact input type match for polymorphic operators. */
4091 rhaas 324 UBC 0 : if (ret)
325 : {
4091 rhaas 326 UIC 0 : for (i = 0; i < old_natts && ret; i++)
327 : {
4091 rhaas 328 EUB : Oid left,
329 : right;
4283 330 :
4091 rhaas 331 UIC 0 : op_input_types(indexInfo->ii_ExclusionOps[i], &left, &right);
332 0 : if ((IsPolymorphicType(left) || IsPolymorphicType(right)) &&
2058 andres 333 0 : TupleDescAttr(irel->rd_att, i)->atttypid != typeObjectId[i])
334 : {
4091 rhaas 335 UBC 0 : ret = false;
336 0 : break;
4091 rhaas 337 EUB : }
338 : }
4092 339 : }
4283 340 : }
341 :
4092 rhaas 342 GIC 51 : index_close(irel, NoLock);
4283 343 51 : return ret;
344 : }
345 :
1105 akorotkov 346 ECB : /*
347 : * CompareOpclassOptions
348 : *
349 : * Compare per-column opclass options which are represented by arrays of text[]
350 : * datums. Both elements of arrays and array themselves can be NULL.
351 : */
352 : static bool
1105 akorotkov 353 GIC 51 : CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts)
354 : {
355 : int i;
356 :
1105 akorotkov 357 CBC 51 : if (!opts1 && !opts2)
1105 akorotkov 358 GIC 51 : return true;
359 :
1105 akorotkov 360 UIC 0 : for (i = 0; i < natts; i++)
1105 akorotkov 361 ECB : {
1105 akorotkov 362 LBC 0 : Datum opt1 = opts1 ? opts1[i] : (Datum) 0;
1105 akorotkov 363 UIC 0 : Datum opt2 = opts2 ? opts2[i] : (Datum) 0;
1105 akorotkov 364 EUB :
1105 akorotkov 365 UIC 0 : if (opt1 == (Datum) 0)
1105 akorotkov 366 EUB : {
1105 akorotkov 367 UBC 0 : if (opt2 == (Datum) 0)
1105 akorotkov 368 UIC 0 : continue;
1105 akorotkov 369 EUB : else
1105 akorotkov 370 UIC 0 : return false;
1105 akorotkov 371 EUB : }
1105 akorotkov 372 UBC 0 : else if (opt2 == (Datum) 0)
1105 akorotkov 373 UIC 0 : return false;
1105 akorotkov 374 EUB :
375 : /* Compare non-NULL text[] datums. */
1105 akorotkov 376 UBC 0 : if (!DatumGetBool(DirectFunctionCall2(array_eq, opt1, opt2)))
377 0 : return false;
378 : }
379 :
380 0 : return true;
1105 akorotkov 381 EUB : }
382 :
383 : /*
1472 peter 384 : * WaitForOlderSnapshots
385 : *
386 : * Wait for transactions that might have an older snapshot than the given xmin
387 : * limit, because it might not contain tuples deleted just before it has
388 : * been taken. Obtain a list of VXIDs of such transactions, and wait for them
389 : * individually. This is used when building an index concurrently.
390 : *
391 : * We can exclude any running transactions that have xmin > the xmin given;
392 : * their oldest snapshot must be newer than our xmin limit.
393 : * We can also exclude any transactions that have xmin = zero, since they
394 : * evidently have no live snapshot at all (and any one they might be in
395 : * process of taking is certainly newer than ours). Transactions in other
396 : * DBs can be ignored too, since they'll never even be able to see the
397 : * index being worked on.
398 : *
399 : * We can also exclude autovacuum processes and processes running manual
400 : * lazy VACUUMs, because they won't be fazed by missing index entries
401 : * either. (Manual ANALYZEs, however, can't be excluded because they
402 : * might be within transactions that are going to do arbitrary operations
403 : * later.) Processes running CREATE INDEX CONCURRENTLY or REINDEX CONCURRENTLY
404 : * on indexes that are neither expressional nor partial are also safe to
405 : * ignore, since we know that those processes won't examine any data
406 : * outside the table they're indexing.
407 : *
408 : * Also, GetCurrentVirtualXIDs never reports our own vxid, so we need not
409 : * check for that.
410 : *
411 : * If a process goes idle-in-transaction with xmin zero, we do not need to
412 : * wait for it anymore, per the above argument. We do not have the
413 : * infrastructure right now to stop waiting if that happens, but we can at
414 : * least avoid the folly of waiting when it is idle at the time we would
415 : * begin to wait. We do this by repeatedly rechecking the output of
416 : * GetCurrentVirtualXIDs. If, during any iteration, a particular vxid
417 : * doesn't show up in the output, we know we can forget about it.
418 : */
419 : void
1468 alvherre 420 GIC 286 : WaitForOlderSnapshots(TransactionId limitXmin, bool progress)
421 : {
422 : int n_old_snapshots;
423 : int i;
1472 peter 424 ECB : VirtualTransactionId *old_snapshots;
425 :
1472 peter 426 GIC 286 : old_snapshots = GetCurrentVirtualXIDs(limitXmin, true, false,
427 : PROC_IS_AUTOVACUUM | PROC_IN_VACUUM
428 : | PROC_IN_SAFE_IC,
429 : &n_old_snapshots);
1468 alvherre 430 CBC 286 : if (progress)
1468 alvherre 431 GIC 279 : pgstat_progress_update_param(PROGRESS_WAITFOR_TOTAL, n_old_snapshots);
432 :
1472 peter 433 410 : for (i = 0; i < n_old_snapshots; i++)
1472 peter 434 ECB : {
1472 peter 435 CBC 124 : if (!VirtualTransactionIdIsValid(old_snapshots[i]))
1472 peter 436 GIC 23 : continue; /* found uninteresting in previous cycle */
1472 peter 437 ECB :
1472 peter 438 GIC 101 : if (i > 0)
1472 peter 439 ECB : {
440 : /* see if anything's changed ... */
441 : VirtualTransactionId *newer_snapshots;
442 : int n_newer_snapshots;
443 : int j;
444 : int k;
445 :
1472 peter 446 GIC 35 : newer_snapshots = GetCurrentVirtualXIDs(limitXmin,
447 : true, false,
448 : PROC_IS_AUTOVACUUM | PROC_IN_VACUUM
449 : | PROC_IN_SAFE_IC,
1472 peter 450 ECB : &n_newer_snapshots);
1472 peter 451 GIC 150 : for (j = i; j < n_old_snapshots; j++)
452 : {
453 115 : if (!VirtualTransactionIdIsValid(old_snapshots[j]))
454 23 : continue; /* found uninteresting in previous cycle */
1472 peter 455 CBC 287 : for (k = 0; k < n_newer_snapshots; k++)
456 : {
457 247 : if (VirtualTransactionIdEquals(old_snapshots[j],
1472 peter 458 ECB : newer_snapshots[k]))
1472 peter 459 CBC 52 : break;
460 : }
461 92 : if (k >= n_newer_snapshots) /* not there anymore */
1472 peter 462 GIC 40 : SetInvalidVirtualTransactionId(old_snapshots[j]);
1472 peter 463 ECB : }
1472 peter 464 GIC 35 : pfree(newer_snapshots);
1472 peter 465 ECB : }
466 :
1472 peter 467 GIC 101 : if (VirtualTransactionIdIsValid(old_snapshots[i]))
1468 alvherre 468 ECB : {
469 : /* If requested, publish who we're going to wait for. */
1468 alvherre 470 GIC 84 : if (progress)
1468 alvherre 471 ECB : {
1418 tgl 472 GIC 84 : PGPROC *holder = BackendIdGetProc(old_snapshots[i].backendId);
473 :
1271 alvherre 474 CBC 84 : if (holder)
1271 alvherre 475 GIC 84 : pgstat_progress_update_param(PROGRESS_WAITFOR_CURRENT_PID,
1271 alvherre 476 CBC 84 : holder->pid);
477 : }
1472 peter 478 84 : VirtualXactLock(old_snapshots[i], true);
1468 alvherre 479 ECB : }
480 :
1468 alvherre 481 GIC 101 : if (progress)
1468 alvherre 482 CBC 101 : pgstat_progress_update_param(PROGRESS_WAITFOR_DONE, i + 1);
483 : }
1472 peter 484 GIC 286 : }
1472 peter 485 ECB :
486 :
487 : /*
8720 bruce 488 : * DefineIndex
489 : * Creates a new index.
490 : *
491 : * This function manages the current userid according to the needs of pg_dump.
492 : * Recreating old-database catalog entries in new-database is fine, regardless
493 : * of which users would have permission to recreate those entries now. That's
494 : * just preservation of state. Running opaque expressions, like calling a
495 : * function named in a catalog entry or evaluating a pg_node_tree in a catalog
496 : * entry, as anyone other than the object owner, is not fine. To adhere to
497 : * those principles and to remain fail-safe, use the table owner userid for
498 : * most ACL checks. Use the original userid for ACL checks reached without
499 : * traversing opaque expressions. (pg_dump can predict such ACL checks from
500 : * catalogs.) Overall, this is a mess. Future DDL development should
501 : * consider offering one DDL command for catalog setup and a separate DDL
502 : * command for steps that run opaque expressions.
503 : *
504 : * 'relationId': the OID of the heap relation on which the index is to be
505 : * created
506 : * 'stmt': IndexStmt describing the properties of the new index.
507 : * 'indexRelationId': normally InvalidOid, but during bootstrap can be
508 : * nonzero to specify a preselected OID for the index.
509 : * 'parentIndexId': the OID of the parent index; InvalidOid if not the child
510 : * of a partitioned index.
511 : * 'parentConstraintId': the OID of the parent constraint; InvalidOid if not
512 : * the child of a constraint (only used when recursing)
513 : * 'total_parts': total number of direct and indirect partitions of relation;
514 : * pass -1 if not known or rel is not partitioned.
515 : * 'is_alter_table': this is due to an ALTER rather than a CREATE operation.
516 : * 'check_rights': check for CREATE rights in namespace and tablespace. (This
517 : * should be true except when ALTER is deleting/recreating an index.)
518 : * 'check_not_in_use': check for table not already in use in current session.
519 : * This should be true unless caller is holding the table open, in which
520 : * case the caller had better have checked it earlier.
521 : * 'skip_build': make the catalog entries but don't create the index files
522 : * 'quiet': suppress the NOTICE chatter ordinarily provided for constraints.
523 : *
524 : * Returns the object address of the created index.
525 : */
526 : ObjectAddress
3338 rhaas 527 GIC 45389 : DefineIndex(Oid relationId,
528 : IndexStmt *stmt,
529 : Oid indexRelationId,
530 : Oid parentIndexId,
531 : Oid parentConstraintId,
532 : int total_parts,
533 : bool is_alter_table,
6913 tgl 534 ECB : bool check_rights,
535 : bool check_not_in_use,
536 : bool skip_build,
537 : bool quiet)
538 : {
539 : bool concurrent;
540 : char *indexRelationName;
541 : char *accessMethodName;
542 : Oid *typeObjectId;
543 : Oid *collationObjectId;
544 : Oid *classObjectId;
545 : Oid accessMethodId;
546 : Oid namespaceId;
547 : Oid tablespaceId;
1875 alvherre 548 GIC 45389 : Oid createdConstraintId = InvalidOid;
549 : List *indexColNames;
550 : List *allIndexParams;
551 : Relation rel;
552 : HeapTuple tuple;
553 : Form_pg_am accessMethodForm;
554 : IndexAmRoutine *amRoutine;
5934 tgl 555 ECB : bool amcanorder;
556 : bool amissummarizing;
557 : amoptions_function amoptions;
558 : bool partitioned;
559 : bool safe_index;
560 : Datum reloptions;
561 : int16 *coloptions;
562 : IndexInfo *indexInfo;
563 : bits16 flags;
564 : bits16 constr_flags;
565 : int numberOfAttributes;
566 : int numberOfKeyAttributes;
567 : TransactionId limitXmin;
568 : ObjectAddress address;
569 : LockRelId heaprelid;
570 : LOCKTAG heaplocktag;
571 : LOCKMODE lockmode;
572 : Snapshot snapshot;
573 : Oid root_save_userid;
574 : int root_save_sec_context;
575 : int root_save_nestlevel;
576 :
335 noah 577 GIC 45389 : root_save_nestlevel = NewGUCNestLevel();
578 :
579 : /*
580 : * Some callers need us to run with an empty default_tablespace; this is a
581 : * necessary hack to be able to reproduce catalog state accurately when
582 : * recreating indexes after table-rewriting ALTER TABLE.
583 : */
1445 alvherre 584 CBC 45389 : if (stmt->reset_default_tblspc)
1445 alvherre 585 GIC 238 : (void) set_config_option("default_tablespace", "",
586 : PGC_USERSET, PGC_S_SESSION,
587 : GUC_ACTION_SAVE, true, 0, false);
588 :
589 : /*
590 : * Force non-concurrent build on temporary relations, even if CONCURRENTLY
1173 michael 591 ECB : * was requested. Other backends can't access a temporary relation, so
592 : * there's no harm in grabbing a stronger lock, and a non-concurrent DROP
593 : * is more efficient. Do this before any use of the concurrent option is
594 : * done.
595 : */
1173 michael 596 GIC 45389 : if (stmt->concurrent && get_rel_persistence(relationId) != RELPERSISTENCE_TEMP)
597 80 : concurrent = true;
598 : else
599 45309 : concurrent = false;
600 :
601 : /*
602 : * Start progress report. If we're building a partition, this was already
1468 alvherre 603 ECB : * done.
604 : */
1468 alvherre 605 GIC 45389 : if (!OidIsValid(parentIndexId))
1405 peter 606 ECB : {
1468 alvherre 607 GIC 44322 : pgstat_progress_start_command(PROGRESS_COMMAND_CREATE_INDEX,
608 : relationId);
1405 peter 609 44322 : pgstat_progress_update_param(PROGRESS_CREATEIDX_COMMAND,
610 : concurrent ?
611 : PROGRESS_CREATEIDX_COMMAND_CREATE_CONCURRENTLY :
1405 peter 612 ECB : PROGRESS_CREATEIDX_COMMAND_CREATE);
613 : }
1468 alvherre 614 :
615 : /*
1463 peter 616 : * No index OID to report yet
617 : */
1463 peter 618 GIC 45389 : pgstat_progress_update_param(PROGRESS_CREATEIDX_INDEX_OID,
619 : InvalidOid);
620 :
621 : /*
622 : * count key attributes in index
623 : */
1828 teodor 624 45389 : numberOfKeyAttributes = list_length(stmt->indexParams);
1828 teodor 625 ECB :
626 : /*
627 : * Calculate the new list of index columns including both key columns and
628 : * INCLUDE columns. Later we can determine which of these are key
629 : * columns, and which are just part of the INCLUDE list by checking the
630 : * list position. A list item in a position less than ii_NumIndexKeyAttrs
1809 tgl 631 : * is part of the key columns, and anything equal to and over is part of
632 : * the INCLUDE columns.
633 : */
1336 tgl 634 GIC 45389 : allIndexParams = list_concat_copy(stmt->indexParams,
635 45389 : stmt->indexIncludingParams);
1823 teodor 636 45389 : numberOfAttributes = list_length(allIndexParams);
637 :
875 tgl 638 45389 : if (numberOfKeyAttributes <= 0)
2557 teodor 639 UIC 0 : ereport(ERROR,
640 : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2557 teodor 641 ECB : errmsg("must specify at least one column")));
8488 tgl 642 CBC 45389 : if (numberOfAttributes > INDEX_MAX_KEYS)
7203 tgl 643 LBC 0 : ereport(ERROR,
644 : (errcode(ERRCODE_TOO_MANY_COLUMNS),
7136 peter_e 645 ECB : errmsg("cannot use more than %d columns in an index",
7203 tgl 646 EUB : INDEX_MAX_KEYS)));
647 :
648 : /*
6071 tgl 649 ECB : * Only SELECT ... FOR UPDATE/SHARE are allowed while doing a standard
6071 tgl 650 EUB : * index build; but for concurrent builds we allow INSERT/UPDATE/DELETE
651 : * (but not VACUUM).
652 : *
653 : * NB: Caller is responsible for making sure that relationId refers to the
654 : * relation on which the index should be built; except in bootstrap mode,
655 : * this will typically require the caller to have already locked the
656 : * relation. To avoid lock upgrade hazards, that lock should be at least
657 : * as strong as the one we take here.
658 : *
659 : * NB: If the lock strength here ever changes, code that is run by
660 : * parallel workers under the control of certain particular ambuild
661 : * functions will need to be updated, too.
662 : */
1173 michael 663 GIC 45389 : lockmode = concurrent ? ShareUpdateExclusiveLock : ShareLock;
1539 andres 664 45389 : rel = table_open(relationId, lockmode);
665 :
666 : /*
667 : * Switch to the table owner's userid, so that any index functions are run
668 : * as that user. Also lock down security-restricted operations. We
669 : * already arranged to make GUC variable changes local to this command.
335 noah 670 ECB : */
335 noah 671 CBC 45389 : GetUserIdAndSecContext(&root_save_userid, &root_save_sec_context);
335 noah 672 GIC 45389 : SetUserIdAndSecContext(rel->rd_rel->relowner,
673 : root_save_sec_context | SECURITY_RESTRICTED_OPERATION);
674 :
6071 tgl 675 45389 : namespaceId = RelationGetNamespace(rel);
676 :
677 : /* Ensure that it makes sense to index this kind of relation */
2001 alvherre 678 CBC 45389 : switch (rel->rd_rel->relkind)
4357 magnus 679 ECB : {
2001 alvherre 680 GIC 45386 : case RELKIND_RELATION:
681 : case RELKIND_MATVIEW:
1906 alvherre 682 ECB : case RELKIND_PARTITIONED_TABLE:
683 : /* OK */
2001 alvherre 684 GIC 45386 : break;
2001 alvherre 685 CBC 3 : default:
4357 magnus 686 GIC 3 : ereport(ERROR,
4357 magnus 687 ECB : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
688 : errmsg("cannot create index on relation \"%s\"",
689 : RelationGetRelationName(rel)),
690 : errdetail_relkind_not_supported(rel->rd_rel->relkind)));
1906 alvherre 691 : break;
692 : }
693 :
694 : /*
695 : * Establish behavior for partitioned tables, and verify sanity of
696 : * parameters.
697 : *
698 : * We do not build an actual index in this case; we only create a few
699 : * catalog entries. The actual indexes are built by recursing for each
700 : * partition.
701 : */
1906 alvherre 702 GIC 45386 : partitioned = rel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE;
703 45386 : if (partitioned)
704 : {
705 : /*
706 : * Note: we check 'stmt->concurrent' rather than 'concurrent', so that
707 : * the error is thrown also for temporary tables. Seems better to be
708 : * consistent, even though we could do it on temporary table because
1173 michael 709 ECB : * we're not actually doing it concurrently.
710 : */
1906 alvherre 711 GIC 857 : if (stmt->concurrent)
712 3 : ereport(ERROR,
713 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
714 : errmsg("cannot create index on partitioned table \"%s\" concurrently",
715 : RelationGetRelationName(rel))));
716 854 : if (stmt->excludeOpNames)
1906 alvherre 717 UIC 0 : ereport(ERROR,
1906 alvherre 718 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
719 : errmsg("cannot create exclusion constraints on partitioned table \"%s\"",
720 : RelationGetRelationName(rel))));
721 : }
722 :
6071 tgl 723 : /*
6071 tgl 724 EUB : * Don't try to CREATE INDEX on temp tables of other backends.
725 : */
5122 tgl 726 GIC 45383 : if (RELATION_IS_OTHER_TEMP(rel))
6071 tgl 727 UIC 0 : ereport(ERROR,
728 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
729 : errmsg("cannot create indexes on temporary tables of other sessions")));
730 :
731 : /*
732 : * Unless our caller vouches for having checked this already, insist that
2135 tgl 733 ECB : * the table not be in use by our own session, either. Otherwise we might
2135 tgl 734 EUB : * fail to make entries in the new index (for instance, if an INSERT or
735 : * UPDATE is in progress and has already made its list of target indexes).
736 : */
2135 tgl 737 GIC 45383 : if (check_not_in_use)
738 6135 : CheckTableNotInUse(rel, "CREATE INDEX");
739 :
740 : /*
741 : * Verify we (still) have CREATE rights in the rel's namespace.
742 : * (Presumably we did when the rel was created, but maybe not anymore.)
743 : * Skip check if caller doesn't want it. Also skip check if
6385 bruce 744 ECB : * bootstrapping, since permissions machinery may not be working yet.
7652 tgl 745 : */
6913 tgl 746 GIC 45380 : if (check_rights && !IsBootstrapProcessingMode())
747 : {
748 : AclResult aclresult;
749 :
147 peter 750 GNC 6592 : aclresult = object_aclcheck(NamespaceRelationId, namespaceId, root_save_userid,
751 : ACL_CREATE);
7652 tgl 752 GIC 6592 : if (aclresult != ACLCHECK_OK)
1954 peter_e 753 LBC 0 : aclcheck_error(aclresult, OBJECT_SCHEMA,
7191 tgl 754 UIC 0 : get_namespace_name(namespaceId));
755 : }
756 :
6729 tgl 757 ECB : /*
758 : * Select tablespace to use. If not specified, use default tablespace
759 : * (which may in turn default to database's default).
6729 tgl 760 EUB : */
3919 tgl 761 GBC 45380 : if (stmt->tableSpace)
762 : {
3919 tgl 763 GIC 100 : tablespaceId = get_tablespace_oid(stmt->tableSpace, false);
1445 alvherre 764 100 : if (partitioned && tablespaceId == MyDatabaseTableSpace)
765 3 : ereport(ERROR,
766 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
767 : errmsg("cannot specify default tablespace for partitioned relations")));
6729 tgl 768 ECB : }
769 : else
770 : {
1445 alvherre 771 CBC 45280 : tablespaceId = GetDefaultTablespace(rel->rd_rel->relpersistence,
1445 alvherre 772 ECB : partitioned);
773 : /* note InvalidOid is OK in this case */
774 : }
775 :
776 : /* Check tablespace permissions */
2247 noah 777 GIC 45374 : if (check_rights &&
2247 noah 778 CBC 52 : OidIsValid(tablespaceId) && tablespaceId != MyDatabaseTableSpace)
779 : {
780 : AclResult aclresult;
781 :
147 peter 782 GNC 52 : aclresult = object_aclcheck(TableSpaceRelationId, tablespaceId, root_save_userid,
783 : ACL_CREATE);
6869 tgl 784 CBC 52 : if (aclresult != ACLCHECK_OK)
1954 peter_e 785 LBC 0 : aclcheck_error(aclresult, OBJECT_TABLESPACE,
6729 tgl 786 UIC 0 : get_tablespace_name(tablespaceId));
787 : }
788 :
6729 tgl 789 ECB : /*
790 : * Force shared indexes into the pg_global tablespace. This is a bit of a
4809 791 : * hack but seems simpler than marking them in the BKI commands. On the
4809 tgl 792 EUB : * other hand, if it's not shared, don't allow it to be placed there.
6729 793 : */
6729 tgl 794 GIC 45374 : if (rel->rd_rel->relisshared)
795 6405 : tablespaceId = GLOBALTABLESPACE_OID;
4809 796 38969 : else if (tablespaceId == GLOBALTABLESPACE_OID)
4809 tgl 797 UIC 0 : ereport(ERROR,
798 : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
799 : errmsg("only shared relations can be placed in pg_global tablespace")));
800 :
4855 tgl 801 ECB : /*
802 : * Choose the index column names.
803 : */
1823 teodor 804 GBC 45374 : indexColNames = ChooseIndexColumnNames(allIndexParams);
805 :
806 : /*
807 : * Select name for index if caller didn't specify
808 : */
3919 tgl 809 GIC 45374 : indexRelationName = stmt->idxname;
6913 810 45374 : if (indexRelationName == NULL)
4855 tgl 811 CBC 4850 : indexRelationName = ChooseIndexName(RelationGetRelationName(rel),
812 : namespaceId,
813 : indexColNames,
814 : stmt->excludeOpNames,
3919 tgl 815 GIC 4850 : stmt->primary,
3919 tgl 816 CBC 4850 : stmt->isconstraint);
6913 tgl 817 ECB :
9345 bruce 818 : /*
819 : * look up the access method, verify it can handle the requested features
820 : */
3919 tgl 821 GIC 45374 : accessMethodName = stmt->accessMethod;
4802 rhaas 822 CBC 45374 : tuple = SearchSysCache1(AMNAME, PointerGetDatum(accessMethodName));
7938 tgl 823 45374 : if (!HeapTupleIsValid(tuple))
824 : {
825 : /*
826 : * Hack to provide more-or-less-transparent updating of old RTREE
827 : * indexes to GiST: if RTREE is requested and not found, use GIST.
6362 tgl 828 ECB : */
6362 tgl 829 CBC 3 : if (strcmp(accessMethodName, "rtree") == 0)
6362 tgl 830 ECB : {
6362 tgl 831 GIC 3 : ereport(NOTICE,
832 : (errmsg("substituting access method \"gist\" for obsolete method \"rtree\"")));
833 3 : accessMethodName = "gist";
4802 rhaas 834 3 : tuple = SearchSysCache1(AMNAME, PointerGetDatum(accessMethodName));
835 : }
6362 tgl 836 ECB :
6362 tgl 837 GIC 3 : if (!HeapTupleIsValid(tuple))
6362 tgl 838 LBC 0 : ereport(ERROR,
839 : (errcode(ERRCODE_UNDEFINED_OBJECT),
6362 tgl 840 ECB : errmsg("access method \"%s\" does not exist",
841 : accessMethodName)));
842 : }
7938 tgl 843 GIC 45374 : accessMethodForm = (Form_pg_am) GETSTRUCT(tuple);
1601 andres 844 CBC 45374 : accessMethodId = accessMethodForm->oid;
2639 tgl 845 GBC 45374 : amRoutine = GetIndexAmRoutine(accessMethodForm->amhandler);
846 :
1468 alvherre 847 GIC 45374 : pgstat_progress_update_param(PROGRESS_CREATEIDX_ACCESS_METHOD_OID,
848 : accessMethodId);
849 :
2639 tgl 850 CBC 45374 : if (stmt->unique && !amRoutine->amcanunique)
7203 tgl 851 LBC 0 : ereport(ERROR,
7203 tgl 852 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
853 : errmsg("access method \"%s\" does not support unique indexes",
2118 854 : accessMethodName)));
1726 tgl 855 GIC 45374 : if (stmt->indexIncludingParams != NIL && !amRoutine->amcaninclude)
1828 teodor 856 9 : ereport(ERROR,
1828 teodor 857 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1828 teodor 858 EUB : errmsg("access method \"%s\" does not support included columns",
859 : accessMethodName)));
875 tgl 860 GIC 45365 : if (numberOfKeyAttributes > 1 && !amRoutine->amcanmulticol)
7203 tgl 861 UIC 0 : ereport(ERROR,
7203 tgl 862 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2118 863 : errmsg("access method \"%s\" does not support multicolumn indexes",
864 : accessMethodName)));
2639 tgl 865 GIC 45365 : if (stmt->excludeOpNames && amRoutine->amgettuple == NULL)
4871 tgl 866 UIC 0 : ereport(ERROR,
4871 tgl 867 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2118 tgl 868 EUB : errmsg("access method \"%s\" does not support exclusion constraints",
869 : accessMethodName)));
870 :
2639 tgl 871 GIC 45365 : amcanorder = amRoutine->amcanorder;
2639 tgl 872 CBC 45365 : amoptions = amRoutine->amoptions;
20 tomas.vondra 873 GNC 45365 : amissummarizing = amRoutine->amsummarizing;
6124 tgl 874 EUB :
2639 tgl 875 GIC 45365 : pfree(amRoutine);
7938 876 45365 : ReleaseSysCache(tuple);
877 :
878 : /*
7042 tgl 879 ECB : * Validate predicate, if given
9345 bruce 880 : */
3919 tgl 881 CBC 45365 : if (stmt->whereClause)
3919 tgl 882 GIC 190 : CheckPredicate((Expr *) stmt->whereClause);
9345 bruce 883 ECB :
6124 tgl 884 : /*
885 : * Parse AM-specific options, convert to text array form, validate.
886 : */
3919 tgl 887 GIC 45365 : reloptions = transformRelOptions((Datum) 0, stmt->options,
888 : NULL, NULL, false, false);
6124 tgl 889 ECB :
6124 tgl 890 CBC 45362 : (void) index_reloptions(amoptions, reloptions, true);
891 :
892 : /*
893 : * Prepare arguments for index_create, primarily an IndexInfo structure.
894 : * Note that predicates must be in implicit-AND format. In a concurrent
1350 michael 895 ECB : * build, mark it not-ready-for-inserts.
896 : */
1350 michael 897 GIC 45330 : indexInfo = makeIndexInfo(numberOfAttributes,
1350 michael 898 ECB : numberOfKeyAttributes,
899 : accessMethodId,
900 : NIL, /* expressions, NIL for now */
1350 michael 901 GIC 45330 : make_ands_implicit((Expr *) stmt->whereClause),
902 45330 : stmt->unique,
430 peter 903 45330 : stmt->nulls_not_distinct,
1173 michael 904 45330 : !concurrent,
905 : concurrent,
20 tomas.vondra 906 GNC 45330 : amissummarizing);
907 :
209 peter 908 45330 : typeObjectId = palloc_array(Oid, numberOfAttributes);
909 45330 : collationObjectId = palloc_array(Oid, numberOfAttributes);
910 45330 : classObjectId = palloc_array(Oid, numberOfAttributes);
911 45330 : coloptions = palloc_array(int16, numberOfAttributes);
4092 rhaas 912 CBC 45330 : ComputeIndexAttrs(indexInfo,
4092 rhaas 913 ECB : typeObjectId, collationObjectId, classObjectId,
914 : coloptions, allIndexParams,
3919 tgl 915 : stmt->excludeOpNames, relationId,
916 : accessMethodName, accessMethodId,
288 noah 917 CBC 45330 : amcanorder, stmt->isconstraint, root_save_userid,
288 noah 918 ECB : root_save_sec_context, &root_save_nestlevel);
6913 tgl 919 :
4457 920 : /*
921 : * Extra checks when creating a PRIMARY KEY index.
922 : */
3919 tgl 923 GIC 45302 : if (stmt->primary)
1646 alvherre 924 3759 : index_check_primary_key(rel, indexInfo, is_alter_table, stmt);
925 :
1875 alvherre 926 ECB : /*
927 : * If this table is partitioned and we're creating a unique index or a
928 : * primary key, make sure that the partition key is a subset of the
929 : * index's columns. Otherwise it would be possible to violate uniqueness
930 : * by putting values that ought to be unique in different partitions.
931 : *
932 : * We could lift this limitation if we had global indexes, but those have
933 : * their own problems, so this is a useful feature combination.
934 : */
1875 alvherre 935 GIC 45284 : if (partitioned && (stmt->unique || stmt->primary))
936 : {
1201 tgl 937 484 : PartitionKey key = RelationGetPartitionKey(rel);
938 : const char *constraint_type;
939 : int i;
940 :
1103 941 484 : if (stmt->primary)
942 392 : constraint_type = "PRIMARY KEY";
943 92 : else if (stmt->unique)
1103 tgl 944 CBC 92 : constraint_type = "UNIQUE";
1103 tgl 945 UIC 0 : else if (stmt->excludeOpNames != NIL)
1103 tgl 946 LBC 0 : constraint_type = "EXCLUDE";
947 : else
948 : {
1103 tgl 949 UIC 0 : elog(ERROR, "unknown constraint type");
1103 tgl 950 ECB : constraint_type = NULL; /* keep compiler quiet */
951 : }
952 :
1875 alvherre 953 : /*
1103 tgl 954 EUB : * Verify that all the columns in the partition key appear in the
955 : * unique key definition, with the same notion of equality.
956 : */
1875 alvherre 957 GIC 968 : for (i = 0; i < key->partnatts; i++)
1875 alvherre 958 EUB : {
1809 tgl 959 GIC 517 : bool found = false;
960 : int eq_strategy;
961 : Oid ptkey_eqop;
962 : int j;
963 :
964 : /*
965 : * Identify the equality operator associated with this partkey
1103 tgl 966 ECB : * column. For list and range partitioning, partkeys use btree
967 : * operator classes; hash partitioning uses hash operator classes.
968 : * (Keep this in sync with ComputePartitionAttrs!)
969 : */
1103 tgl 970 GIC 517 : if (key->strategy == PARTITION_STRATEGY_HASH)
971 23 : eq_strategy = HTEqualStrategyNumber;
972 : else
973 494 : eq_strategy = BTEqualStrategyNumber;
974 :
975 517 : ptkey_eqop = get_opfamily_member(key->partopfamily[i],
976 517 : key->partopcintype[i],
977 517 : key->partopcintype[i],
978 : eq_strategy);
1103 tgl 979 CBC 517 : if (!OidIsValid(ptkey_eqop))
1103 tgl 980 LBC 0 : elog(ERROR, "missing operator %d(%u,%u) in partition opfamily %u",
981 : eq_strategy, key->partopcintype[i], key->partopcintype[i],
1103 tgl 982 ECB : key->partopfamily[i]);
983 :
984 : /*
985 : * We'll need to be able to identify the equality operators
986 : * associated with index columns, too. We know what to do with
987 : * btree opclasses; if there are ever any other index types that
988 : * support unique indexes, this logic will need extension.
1103 tgl 989 EUB : */
1103 tgl 990 GIC 517 : if (accessMethodId == BTREE_AM_OID)
991 517 : eq_strategy = BTEqualStrategyNumber;
992 : else
1103 tgl 993 UIC 0 : ereport(ERROR,
994 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
995 : errmsg("cannot match partition key to an index using access method \"%s\"",
996 : accessMethodName)));
997 :
998 : /*
1875 alvherre 999 ECB : * It may be possible to support UNIQUE constraints when partition
1000 : * keys are expressions, but is it worth it? Give up for now.
1001 : */
1875 alvherre 1002 GBC 517 : if (key->partattrs[i] == 0)
1875 alvherre 1003 GIC 6 : ereport(ERROR,
1004 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1005 : errmsg("unsupported %s constraint with partition key definition",
1006 : constraint_type),
1007 : errdetail("%s constraints cannot be used when partition keys include expressions.",
1008 : constraint_type)));
1009 :
1010 : /* Search the index column(s) for a match */
1546 alvherre 1011 CBC 566 : for (j = 0; j < indexInfo->ii_NumIndexKeyAttrs; j++)
1875 alvherre 1012 ECB : {
1823 teodor 1013 GIC 539 : if (key->partattrs[i] == indexInfo->ii_IndexAttrNumbers[j])
1014 : {
1015 : /* Matched the column, now what about the equality op? */
1016 : Oid idx_opfamily;
1017 : Oid idx_opcintype;
1018 :
1103 tgl 1019 484 : if (get_opclass_opfamily_and_input_type(classObjectId[j],
1103 tgl 1020 ECB : &idx_opfamily,
1021 : &idx_opcintype))
1022 : {
1023 : Oid idx_eqop;
1024 :
1103 tgl 1025 GIC 484 : idx_eqop = get_opfamily_member(idx_opfamily,
1026 : idx_opcintype,
1027 : idx_opcintype,
1103 tgl 1028 ECB : eq_strategy);
1103 tgl 1029 GIC 484 : if (ptkey_eqop == idx_eqop)
1030 : {
1031 484 : found = true;
1032 484 : break;
1033 : }
1103 tgl 1034 ECB : }
1035 : }
1036 : }
1037 :
1875 alvherre 1038 CBC 511 : if (!found)
1039 : {
1875 alvherre 1040 ECB : Form_pg_attribute att;
1041 :
1103 tgl 1042 GIC 27 : att = TupleDescAttr(RelationGetDescr(rel),
1043 : key->partattrs[i] - 1);
1875 alvherre 1044 27 : ereport(ERROR,
1045 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1046 : errmsg("unique constraint on partitioned table must include all partitioning columns"),
1875 alvherre 1047 ECB : errdetail("%s constraint on table \"%s\" lacks column \"%s\" which is part of the partition key.",
1048 : constraint_type, RelationGetRelationName(rel),
1049 : NameStr(att->attname))));
1050 : }
1051 : }
1052 : }
1053 :
1054 :
1055 : /*
1056 : * We disallow indexes on system columns. They would not necessarily get
1057 : * updated correctly, and they don't seem useful anyway.
1058 : */
228 drowley 1059 GNC 116912 : for (int i = 0; i < indexInfo->ii_NumIndexAttrs; i++)
1060 : {
1823 teodor 1061 GIC 71661 : AttrNumber attno = indexInfo->ii_IndexAttrNumbers[i];
1062 :
1601 andres 1063 71661 : if (attno < 0)
2549 tgl 1064 UIC 0 : ereport(ERROR,
1065 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1066 : errmsg("index creation on system columns is not supported")));
1067 : }
2549 tgl 1068 ECB :
1069 : /*
1070 : * Also check for system columns used in expressions or predicates.
1071 : */
2549 tgl 1072 CBC 45251 : if (indexInfo->ii_Expressions || indexInfo->ii_Predicate)
2549 tgl 1073 EUB : {
2549 tgl 1074 GIC 486 : Bitmapset *indexattrs = NULL;
1075 :
1076 486 : pull_varattnos((Node *) indexInfo->ii_Expressions, 1, &indexattrs);
1077 486 : pull_varattnos((Node *) indexInfo->ii_Predicate, 1, &indexattrs);
1078 :
228 drowley 1079 GNC 3396 : for (int i = FirstLowInvalidHeapAttributeNumber + 1; i < 0; i++)
1080 : {
1601 andres 1081 CBC 2916 : if (bms_is_member(i - FirstLowInvalidHeapAttributeNumber,
1082 : indexattrs))
2549 tgl 1083 6 : ereport(ERROR,
1084 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2118 tgl 1085 ECB : errmsg("index creation on system columns is not supported")));
2549 1086 : }
1087 : }
1088 :
1089 : /* Is index safe for others to ignore? See set_indexsafe_procflags() */
865 alvherre 1090 CBC 90147 : safe_index = indexInfo->ii_Expressions == NIL &&
865 alvherre 1091 GIC 44902 : indexInfo->ii_Predicate == NIL;
865 alvherre 1092 ECB :
1093 : /*
1094 : * Report index creation if appropriate (delay this till after most of the
1095 : * error checks)
1096 : */
3919 tgl 1097 GIC 45245 : if (stmt->isconstraint && !quiet)
1098 : {
4871 tgl 1099 ECB : const char *constraint_type;
1100 :
3919 tgl 1101 GIC 4087 : if (stmt->primary)
4871 1102 3672 : constraint_type = "PRIMARY KEY";
3919 1103 415 : else if (stmt->unique)
4871 1104 363 : constraint_type = "UNIQUE";
3919 1105 52 : else if (stmt->excludeOpNames != NIL)
4871 tgl 1106 CBC 52 : constraint_type = "EXCLUDE";
1107 : else
1108 : {
4871 tgl 1109 UIC 0 : elog(ERROR, "unknown constraint type");
2118 tgl 1110 ECB : constraint_type = NULL; /* keep compiler quiet */
4871 1111 : }
1112 :
3931 rhaas 1113 CBC 4087 : ereport(DEBUG1,
781 peter 1114 ECB : (errmsg_internal("%s %s will create implicit index \"%s\" for table \"%s\"",
697 tgl 1115 : is_alter_table ? "ALTER TABLE / ADD" : "CREATE TABLE /",
1116 : constraint_type,
1117 : indexRelationName, RelationGetRelationName(rel))));
4871 tgl 1118 EUB : }
1119 :
1120 : /*
1121 : * A valid stmt->oldNumber implies that we already have a built form of
1122 : * the index. The caller should also decline any index build.
1123 : */
277 rhaas 1124 GNC 45245 : Assert(!RelFileNumberIsValid(stmt->oldNumber) || (skip_build && !concurrent));
1125 :
1126 : /*
1127 : * Make the catalog entries for the index, including constraints. This
1128 : * step also actually builds the index, except if caller requested not to
1129 : * or in concurrent mode, in which case it'll be done later, or doing a
1130 : * partitioned index (because those don't have storage).
1131 : */
1972 alvherre 1132 GIC 45245 : flags = constr_flags = 0;
1972 alvherre 1133 CBC 45245 : if (stmt->isconstraint)
1972 alvherre 1134 GIC 4195 : flags |= INDEX_CREATE_ADD_CONSTRAINT;
1173 michael 1135 45245 : if (skip_build || concurrent || partitioned)
1972 alvherre 1136 38908 : flags |= INDEX_CREATE_SKIP_BUILD;
1137 45245 : if (stmt->if_not_exists)
1138 9 : flags |= INDEX_CREATE_IF_NOT_EXISTS;
1173 michael 1139 45245 : if (concurrent)
1972 alvherre 1140 77 : flags |= INDEX_CREATE_CONCURRENT;
1906 alvherre 1141 CBC 45245 : if (partitioned)
1142 815 : flags |= INDEX_CREATE_PARTITIONED;
1972 1143 45245 : if (stmt->primary)
1144 3726 : flags |= INDEX_CREATE_IS_PRIMARY;
1586 alvherre 1145 ECB :
1146 : /*
1147 : * If the table is partitioned, and recursion was declined but partitions
1148 : * exist, mark the index as invalid.
1149 : */
1906 alvherre 1150 CBC 45245 : if (partitioned && stmt->relation && !stmt->relation->inh)
1586 alvherre 1151 ECB : {
717 alvherre 1152 CBC 105 : PartitionDesc pd = RelationGetPartitionDesc(rel, true);
1586 alvherre 1153 ECB :
1586 alvherre 1154 GIC 105 : if (pd->nparts != 0)
1155 98 : flags |= INDEX_CREATE_INVALID;
1156 : }
1157 :
1972 1158 45245 : if (stmt->deferrable)
1972 alvherre 1159 CBC 40 : constr_flags |= INDEX_CONSTR_CREATE_DEFERRABLE;
1972 alvherre 1160 GIC 45245 : if (stmt->initdeferred)
1972 alvherre 1161 CBC 7 : constr_flags |= INDEX_CONSTR_CREATE_INIT_DEFERRED;
1162 :
6071 tgl 1163 ECB : indexRelationId =
1906 alvherre 1164 CBC 45245 : index_create(rel, indexRelationName, indexRelationId, parentIndexId,
1165 : parentConstraintId,
1166 : stmt->oldNumber, indexInfo, indexColNames,
4370 tgl 1167 ECB : accessMethodId, tablespaceId,
1168 : collationObjectId, classObjectId,
1972 alvherre 1169 : coloptions, reloptions,
1170 : flags, constr_flags,
1875 alvherre 1171 GIC 45245 : allowSystemTableMods, !check_rights,
1172 45245 : &createdConstraintId);
3076 fujii 1173 ECB :
2959 alvherre 1174 GIC 45155 : ObjectAddressSet(address, RelationRelationId, indexRelationId);
1175 :
3076 fujii 1176 45155 : if (!OidIsValid(indexRelationId))
1177 : {
1178 : /*
1179 : * Roll back any GUC changes executed by index functions. Also revert
335 noah 1180 ECB : * to original default_tablespace if we changed it above.
1181 : */
335 noah 1182 GIC 9 : AtEOXact_GUC(false, root_save_nestlevel);
335 noah 1183 ECB :
1184 : /* Restore userid and security context */
335 noah 1185 CBC 9 : SetUserIdAndSecContext(root_save_userid, root_save_sec_context);
1186 :
1539 andres 1187 GIC 9 : table_close(rel, NoLock);
1188 :
1189 : /* If this is the top-level index, we're done */
1468 alvherre 1190 9 : if (!OidIsValid(parentIndexId))
1468 alvherre 1191 CBC 9 : pgstat_progress_end_command();
1192 :
2959 alvherre 1193 GIC 9 : return address;
3076 fujii 1194 ECB : }
1195 :
335 noah 1196 : /*
1197 : * Roll back any GUC changes executed by index functions, and keep
1198 : * subsequent changes local to this command. This is essential if some
288 1199 : * index function changed a behavior-affecting GUC, e.g. search_path.
335 1200 : */
335 noah 1201 GIC 45146 : AtEOXact_GUC(false, root_save_nestlevel);
335 noah 1202 CBC 45146 : root_save_nestlevel = NewGUCNestLevel();
1203 :
1204 : /* Add any requested comment */
3919 tgl 1205 GIC 45146 : if (stmt->idxcomment != NULL)
1206 45 : CreateComments(indexRelationId, RelationRelationId, 0,
1207 45 : stmt->idxcomment);
1208 :
1906 alvherre 1209 45146 : if (partitioned)
1906 alvherre 1210 ECB : {
859 1211 : PartitionDesc partdesc;
1212 :
1213 : /*
1809 tgl 1214 : * Unless caller specified to skip this step (via ONLY), process each
1215 : * partition to make sure they all contain a corresponding index.
1906 alvherre 1216 : *
1217 : * If we're called internally (no stmt->relation), recurse always.
1218 : */
717 alvherre 1219 GIC 815 : partdesc = RelationGetPartitionDesc(rel, true);
859 1220 815 : if ((!stmt->relation || stmt->relation->inh) && partdesc->nparts > 0)
1221 : {
1906 1222 239 : int nparts = partdesc->nparts;
209 peter 1223 GNC 239 : Oid *part_oids = palloc_array(Oid, nparts);
1906 alvherre 1224 GIC 239 : bool invalidate_parent = false;
1225 : Relation parentIndex;
1226 : TupleDesc parentDesc;
1227 :
1228 : /*
1229 : * Report the total number of partitions at the start of the
1230 : * command; don't update it when being called recursively.
1231 : */
15 tgl 1232 GNC 239 : if (!OidIsValid(parentIndexId))
1233 : {
1234 : /*
1235 : * When called by ProcessUtilitySlow, the number of partitions
1236 : * is passed in as an optimization; but other callers pass -1
1237 : * since they don't have the value handy. This should count
1238 : * partitions the same way, ie one less than the number of
1239 : * relations find_all_inheritors reports.
1240 : *
1241 : * We assume we needn't ask find_all_inheritors to take locks,
1242 : * because that should have happened already for all callers.
1243 : * Even if it did not, this is safe as long as we don't try to
1244 : * touch the partitions here; the worst consequence would be a
1245 : * bogus progress-reporting total.
1246 : */
1247 195 : if (total_parts < 0)
1248 : {
1249 61 : List *children = find_all_inheritors(relationId,
1250 : NoLock, NULL);
1251 :
1252 61 : total_parts = list_length(children) - 1;
1253 61 : list_free(children);
1254 : }
1255 :
1256 195 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PARTITIONS_TOTAL,
1257 : total_parts);
1258 : }
1259 :
234 tgl 1260 ECB : /* Make a local copy of partdesc->oids[], just for safety */
1906 alvherre 1261 CBC 239 : memcpy(part_oids, partdesc->oids, sizeof(Oid) * nparts);
1906 alvherre 1262 ECB :
1263 : /*
1264 : * We'll need an IndexInfo describing the parent index. The one
1265 : * built above is almost good enough, but not quite, because (for
1266 : * example) its predicate expression if any hasn't been through
1267 : * expression preprocessing. The most reliable way to get an
1268 : * IndexInfo that will match those for child indexes is to build
1269 : * it the same way, using BuildIndexInfo().
234 tgl 1270 : */
234 tgl 1271 GIC 239 : parentIndex = index_open(indexRelationId, lockmode);
1272 239 : indexInfo = BuildIndexInfo(parentIndex);
1273 :
1382 alvherre 1274 239 : parentDesc = RelationGetDescr(rel);
1275 :
1276 : /*
1277 : * For each partition, scan all existing indexes; if one matches
1278 : * our index definition and is not already attached to some other
1279 : * parent index, attach it to the one we just created.
1280 : *
1281 : * If none matches, build a new index by calling ourselves
1282 : * recursively with the same options (except for the index name).
1283 : */
228 drowley 1284 GNC 627 : for (int i = 0; i < nparts; i++)
1906 alvherre 1285 ECB : {
1809 tgl 1286 GIC 400 : Oid childRelid = part_oids[i];
1809 tgl 1287 ECB : Relation childrel;
1288 : Oid child_save_userid;
1289 : int child_save_sec_context;
335 noah 1290 : int child_save_nestlevel;
1809 tgl 1291 : List *childidxs;
1292 : ListCell *cell;
1293 : AttrMap *attmap;
1809 tgl 1294 CBC 400 : bool found = false;
1295 :
1539 andres 1296 GIC 400 : childrel = table_open(childRelid, lockmode);
1297 :
335 noah 1298 400 : GetUserIdAndSecContext(&child_save_userid,
335 noah 1299 ECB : &child_save_sec_context);
335 noah 1300 GIC 400 : SetUserIdAndSecContext(childrel->rd_rel->relowner,
1301 : child_save_sec_context | SECURITY_RESTRICTED_OPERATION);
1302 400 : child_save_nestlevel = NewGUCNestLevel();
1303 :
1304 : /*
1305 : * Don't try to create indexes on foreign tables, though. Skip
1306 : * those if a regular index, or fail if trying to create a
1307 : * constraint index.
1308 : */
1383 alvherre 1309 CBC 400 : if (childrel->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
1383 alvherre 1310 ECB : {
1383 alvherre 1311 GIC 9 : if (stmt->unique || stmt->primary)
1383 alvherre 1312 CBC 6 : ereport(ERROR,
1313 : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
1314 : errmsg("cannot create unique index on partitioned table \"%s\"",
1315 : RelationGetRelationName(rel)),
1316 : errdetail("Table \"%s\" contains partitions that are foreign tables.",
1317 : RelationGetRelationName(rel))));
1318 :
335 noah 1319 GIC 3 : AtEOXact_GUC(false, child_save_nestlevel);
1320 3 : SetUserIdAndSecContext(child_save_userid,
1321 : child_save_sec_context);
1383 alvherre 1322 CBC 3 : table_close(childrel, lockmode);
1383 alvherre 1323 GIC 3 : continue;
1383 alvherre 1324 ECB : }
1325 :
1906 alvherre 1326 GIC 391 : childidxs = RelationGetIndexList(childrel);
1327 : attmap =
1208 michael 1328 391 : build_attrmap_by_name(RelationGetDescr(childrel),
1329 : parentDesc,
1330 : false);
1331 :
1906 alvherre 1332 553 : foreach(cell, childidxs)
1906 alvherre 1333 ECB : {
1906 alvherre 1334 GIC 189 : Oid cldidxid = lfirst_oid(cell);
1906 alvherre 1335 ECB : Relation cldidx;
1336 : IndexInfo *cldIdxInfo;
1337 :
1338 : /* this index is already partition of another one */
1906 alvherre 1339 CBC 189 : if (has_superclass(cldidxid))
1906 alvherre 1340 GIC 150 : continue;
1906 alvherre 1341 ECB :
1906 alvherre 1342 GIC 39 : cldidx = index_open(cldidxid, lockmode);
1343 39 : cldIdxInfo = BuildIndexInfo(cldidx);
1344 39 : if (CompareIndexInfo(cldIdxInfo, indexInfo,
1345 : cldidx->rd_indcollation,
1346 : parentIndex->rd_indcollation,
1347 : cldidx->rd_opfamily,
234 tgl 1348 ECB : parentIndex->rd_opfamily,
1349 : attmap))
1906 alvherre 1350 : {
1809 tgl 1351 CBC 27 : Oid cldConstrOid = InvalidOid;
1352 :
1353 : /*
1354 : * Found a match.
1355 : *
1356 : * If this index is being created in the parent
1357 : * because of a constraint, then the child needs to
1875 alvherre 1358 ECB : * have a constraint also, so look for one. If there
1359 : * is no such constraint, this index is no good, so
1360 : * keep looking.
1906 1361 : */
1875 alvherre 1362 CBC 27 : if (createdConstraintId != InvalidOid)
1363 : {
1364 : cldConstrOid =
1365 6 : get_relation_idx_constraint_oid(childRelid,
1366 : cldidxid);
1367 6 : if (cldConstrOid == InvalidOid)
1368 : {
1875 alvherre 1369 UIC 0 : index_close(cldidx, lockmode);
1370 0 : continue;
1875 alvherre 1371 ECB : }
1372 : }
1373 :
1374 : /* Attach index to parent and we're done. */
1906 alvherre 1375 GIC 27 : IndexSetParentIndex(cldidx, indexRelationId);
1875 1376 27 : if (createdConstraintId != InvalidOid)
1377 6 : ConstraintSetParentConstraint(cldConstrOid,
1518 tgl 1378 ECB : createdConstraintId,
1379 : childRelid);
1380 :
1564 peter_e 1381 CBC 27 : if (!cldidx->rd_index->indisvalid)
1906 alvherre 1382 6 : invalidate_parent = true;
1906 alvherre 1383 ECB :
1906 alvherre 1384 GIC 27 : found = true;
1385 :
1386 : /*
1387 : * Report this partition as processed. Note that if
1388 : * the partition has children itself, we'd ideally
1389 : * count the children and update the progress report
1390 : * for all of them; but that seems unduly expensive.
1391 : * Instead, the progress report will act like all such
1392 : * indirect children were processed in zero time at
1393 : * the end of the command.
1394 : */
15 tgl 1395 GNC 27 : pgstat_progress_incr_param(PROGRESS_CREATEIDX_PARTITIONS_DONE, 1);
1396 :
1397 : /* keep lock till commit */
1906 alvherre 1398 GIC 27 : index_close(cldidx, NoLock);
1399 27 : break;
1400 : }
1401 :
1906 alvherre 1402 CBC 12 : index_close(cldidx, lockmode);
1403 : }
1404 :
1906 alvherre 1405 GIC 391 : list_free(childidxs);
335 noah 1406 391 : AtEOXact_GUC(false, child_save_nestlevel);
1407 391 : SetUserIdAndSecContext(child_save_userid,
1408 : child_save_sec_context);
1539 andres 1409 391 : table_close(childrel, NoLock);
1410 :
1411 : /*
1412 : * If no matching index was found, create our own.
1906 alvherre 1413 ECB : */
1906 alvherre 1414 GIC 391 : if (!found)
1415 : {
1906 alvherre 1416 CBC 364 : IndexStmt *childStmt = copyObject(stmt);
1417 : bool found_whole_row;
1752 alvherre 1418 ECB : ListCell *lc;
1419 :
1444 tgl 1420 EUB : /*
1421 : * We can't use the same index name for the child index,
1422 : * so clear idxname to let the recursive invocation choose
1423 : * a new name. Likewise, the existing target relation
1424 : * field is wrong, and if indexOid or oldNumber are set,
1425 : * they mustn't be applied to the child either.
1444 tgl 1426 ECB : */
1444 tgl 1427 CBC 364 : childStmt->idxname = NULL;
1428 364 : childStmt->relation = NULL;
1444 tgl 1429 GIC 364 : childStmt->indexOid = InvalidOid;
277 rhaas 1430 GNC 364 : childStmt->oldNumber = InvalidRelFileNumber;
1100 noah 1431 GIC 364 : childStmt->oldCreateSubid = InvalidSubTransactionId;
277 rhaas 1432 GNC 364 : childStmt->oldFirstRelfilelocatorSubid = InvalidSubTransactionId;
1444 tgl 1433 ECB :
1434 : /*
1752 alvherre 1435 : * Adjust any Vars (both in expressions and in the index's
1436 : * WHERE clause) to match the partition's column numbering
1437 : * in case it's different from the parent's.
1438 : */
1752 alvherre 1439 GIC 825 : foreach(lc, childStmt->indexParams)
1440 : {
1744 andrew 1441 461 : IndexElem *ielem = lfirst(lc);
1442 :
1443 : /*
1444 : * If the index parameter is an expression, we must
1445 : * translate it to contain child Vars.
1752 alvherre 1446 ECB : */
1752 alvherre 1447 GIC 461 : if (ielem->expr)
1448 : {
1752 alvherre 1449 CBC 33 : ielem->expr =
1450 33 : map_variable_attnos((Node *) ielem->expr,
1451 : 1, 0, attmap,
1452 : InvalidOid,
1752 alvherre 1453 ECB : &found_whole_row);
1752 alvherre 1454 GIC 33 : if (found_whole_row)
1752 alvherre 1455 UIC 0 : elog(ERROR, "cannot convert whole-row table reference");
1752 alvherre 1456 ECB : }
1457 : }
1906 alvherre 1458 CBC 364 : childStmt->whereClause =
1906 alvherre 1459 GIC 364 : map_variable_attnos(stmt->whereClause, 1, 0,
1208 michael 1460 ECB : attmap,
1461 : InvalidOid, &found_whole_row);
1906 alvherre 1462 GIC 364 : if (found_whole_row)
1906 alvherre 1463 UIC 0 : elog(ERROR, "cannot convert whole-row table reference");
1464 :
335 noah 1465 ECB : /*
1466 : * Recurse as the starting user ID. Callee will use that
1467 : * for permission checks, then switch again.
1468 : */
335 noah 1469 GIC 364 : Assert(GetUserId() == child_save_userid);
1470 364 : SetUserIdAndSecContext(root_save_userid,
1471 : root_save_sec_context);
1906 alvherre 1472 364 : DefineIndex(childRelid, childStmt,
1473 : InvalidOid, /* no predefined OID */
1474 : indexRelationId, /* this is our child */
1475 : createdConstraintId,
1476 : -1,
1477 : is_alter_table, check_rights, check_not_in_use,
1478 : skip_build, quiet);
335 noah 1479 CBC 358 : SetUserIdAndSecContext(child_save_userid,
335 noah 1480 ECB : child_save_sec_context);
1906 alvherre 1481 : }
1482 :
1208 michael 1483 GIC 385 : free_attrmap(attmap);
1484 : }
1485 :
234 tgl 1486 227 : index_close(parentIndex, lockmode);
1487 :
1488 : /*
1906 alvherre 1489 ECB : * The pg_index row we inserted for this index was marked
1490 : * indisvalid=true. But if we attached an existing index that is
1809 tgl 1491 : * invalid, this is incorrect, so update our row to invalid too.
1492 : */
1906 alvherre 1493 GIC 227 : if (invalidate_parent)
1494 : {
1539 andres 1495 6 : Relation pg_index = table_open(IndexRelationId, RowExclusiveLock);
1496 : HeapTuple tup,
1906 alvherre 1497 ECB : newtup;
1498 :
1906 alvherre 1499 CBC 6 : tup = SearchSysCache1(INDEXRELID,
1906 alvherre 1500 ECB : ObjectIdGetDatum(indexRelationId));
1435 tgl 1501 GIC 6 : if (!HeapTupleIsValid(tup))
1906 alvherre 1502 UIC 0 : elog(ERROR, "cache lookup failed for index %u",
1503 : indexRelationId);
1906 alvherre 1504 CBC 6 : newtup = heap_copytuple(tup);
1906 alvherre 1505 GBC 6 : ((Form_pg_index) GETSTRUCT(newtup))->indisvalid = false;
1906 alvherre 1506 GIC 6 : CatalogTupleUpdate(pg_index, &tup->t_self, newtup);
1507 6 : ReleaseSysCache(tup);
1539 andres 1508 CBC 6 : table_close(pg_index, RowExclusiveLock);
1906 alvherre 1509 6 : heap_freetuple(newtup);
1510 : }
1511 : }
1906 alvherre 1512 ECB :
1906 alvherre 1513 EUB : /*
1514 : * Indexes on partitioned tables are not themselves built, so we're
1515 : * done here.
1516 : */
335 noah 1517 GIC 803 : AtEOXact_GUC(false, root_save_nestlevel);
1518 803 : SetUserIdAndSecContext(root_save_userid, root_save_sec_context);
1382 alvherre 1519 CBC 803 : table_close(rel, NoLock);
1468 1520 803 : if (!OidIsValid(parentIndexId))
1468 alvherre 1521 GIC 683 : pgstat_progress_end_command();
1522 : else
1523 : {
1524 : /* Update progress for an intermediate partitioned index itself */
15 tgl 1525 GNC 120 : pgstat_progress_incr_param(PROGRESS_CREATEIDX_PARTITIONS_DONE, 1);
1526 : }
1527 :
1906 alvherre 1528 CBC 803 : return address;
1529 : }
1530 :
335 noah 1531 GIC 44331 : AtEOXact_GUC(false, root_save_nestlevel);
1532 44331 : SetUserIdAndSecContext(root_save_userid, root_save_sec_context);
1533 :
1173 michael 1534 44331 : if (!concurrent)
4457 tgl 1535 ECB : {
1536 : /* Close the heap and we're done, in the non-concurrent case */
1539 andres 1537 GIC 44260 : table_close(rel, NoLock);
1538 :
1539 : /*
1540 : * If this is the top-level index, the command is done overall;
1541 : * otherwise, increment progress to report one child index is done.
1542 : */
1468 alvherre 1543 44260 : if (!OidIsValid(parentIndexId))
1544 43331 : pgstat_progress_end_command();
1545 : else
15 tgl 1546 GNC 929 : pgstat_progress_incr_param(PROGRESS_CREATEIDX_PARTITIONS_DONE, 1);
1468 alvherre 1547 ECB :
2959 alvherre 1548 GIC 44260 : return address;
1549 : }
1550 :
1551 : /* save lockrelid and locktag for below, then close rel */
4457 tgl 1552 71 : heaprelid = rel->rd_lockInfo.lockRelId;
1553 71 : SET_LOCKTAG_RELATION(heaplocktag, heaprelid.dbId, heaprelid.relId);
1539 andres 1554 CBC 71 : table_close(rel, NoLock);
1555 :
6071 tgl 1556 ECB : /*
1557 : * For a concurrent build, it's important to make the catalog entries
1558 : * visible to other transactions before we start to build the index. That
1559 : * will prevent them from making incompatible HOT updates. The new index
4790 bruce 1560 : * will be marked not indisready and not indisvalid, so that no one else
1561 : * tries to either insert into it or use it for queries.
4855 tgl 1562 : *
6071 tgl 1563 EUB : * We must commit our current transaction so that the index becomes
1564 : * visible; then start another. Note that all the data structures we just
6031 bruce 1565 ECB : * built are lost in the commit. The only data we keep past here are the
1566 : * relation IDs.
6071 tgl 1567 : *
1568 : * Before committing, get a session-level lock on the table, to ensure
6031 bruce 1569 : * that neither it nor the index can be dropped before we finish. This
1570 : * cannot block, even if someone else is waiting for access, because we
1571 : * already have the same lock within our transaction.
1572 : *
1573 : * Note: we don't currently bother with a session lock on the index,
1574 : * because there are no operations that could change its state while we
1575 : * hold lock on the parent table. This might need to change later.
1576 : */
6071 tgl 1577 GIC 71 : LockRelationIdForSession(&heaprelid, ShareUpdateExclusiveLock);
6071 tgl 1578 ECB :
5445 alvherre 1579 CBC 71 : PopActiveSnapshot();
6071 tgl 1580 71 : CommitTransactionCommand();
1581 71 : StartTransactionCommand();
6071 tgl 1582 ECB :
1583 : /* Tell concurrent index builds to ignore us, if index qualifies */
865 alvherre 1584 GIC 71 : if (safe_index)
1585 54 : set_indexsafe_procflags();
865 alvherre 1586 ECB :
1587 : /*
1588 : * The index is now visible, so we can report the OID. While on it,
776 michael 1589 : * include the report for the beginning of phase 2.
1590 : */
1591 : {
776 michael 1592 CBC 71 : const int progress_cols[] = {
776 michael 1593 ECB : PROGRESS_CREATEIDX_INDEX_OID,
1594 : PROGRESS_CREATEIDX_PHASE
1595 : };
776 michael 1596 GIC 71 : const int64 progress_vals[] = {
1597 : indexRelationId,
776 michael 1598 ECB : PROGRESS_CREATEIDX_PHASE_WAIT_1
1599 : };
1600 :
776 michael 1601 GIC 71 : pgstat_progress_update_multi_param(2, progress_cols, progress_vals);
1602 : }
1603 :
6071 tgl 1604 ECB : /*
5680 1605 : * Phase 2 of concurrent index build (see comments for validate_index()
1606 : * for an overview of how this works)
1607 : *
1608 : * Now we must wait until no running transaction could have the table open
3383 alvherre 1609 : * with the old list of indexes. Use ShareLock to consider running
1610 : * transactions that hold locks that permit writing to the table. Note we
1611 : * do not need to worry about xacts that open the table for writing after
1612 : * this point; they will see the new index when they open it.
6069 tgl 1613 : *
5624 bruce 1614 : * Note: the reason we use actual lock acquisition here, rather than just
1615 : * checking the ProcArray and sleeping, is that deadlock is possible if
1616 : * one of the transactions in question is blocked trying to acquire an
1617 : * exclusive lock on our table. The lock code will detect deadlock and
1618 : * error out properly.
1619 : */
1468 alvherre 1620 GIC 71 : WaitForLockers(heaplocktag, ShareLock, true);
1621 :
1622 : /*
1623 : * At this moment we are sure that there are no transactions with the
1624 : * table open for write that don't have this new index in their list of
1625 : * indexes. We have waited out all the existing transactions and any new
1626 : * transaction will have the new index in its list, but the index is still
1627 : * marked as "not-ready-for-inserts". The index is consulted while
1628 : * deciding HOT-safety though. This arrangement ensures that no new HOT
1629 : * chains can be created where the new tuple and the old tuple in the
1630 : * chain have different index keys.
1631 : *
1632 : * We now take a new snapshot, and build the index using all tuples that
1633 : * are visible in this snapshot. We can be sure that any HOT updates to
1634 : * these tuples will be compatible with the index, since any updates made
1635 : * by transactions that didn't know about the index are now committed or
1636 : * rolled back. Thus, each visible tuple is either the end of its
1637 : * HOT-chain or the extension of the chain is HOT-safe for this index.
5680 tgl 1638 ECB : */
1639 :
1640 : /* Set ActiveSnapshot since functions in the indexes may need it */
5445 alvherre 1641 CBC 71 : PushActiveSnapshot(GetTransactionSnapshot());
5680 tgl 1642 ECB :
1643 : /* Perform concurrent build of index */
1472 peter 1644 GIC 71 : index_concurrently_build(relationId, indexRelationId);
5680 tgl 1645 ECB :
5445 alvherre 1646 : /* we can do away with our snapshot */
5445 alvherre 1647 GIC 65 : PopActiveSnapshot();
1648 :
1649 : /*
1650 : * Commit this transaction to make the indisready update visible.
1651 : */
5680 tgl 1652 65 : CommitTransactionCommand();
5680 tgl 1653 CBC 65 : StartTransactionCommand();
1654 :
1655 : /* Tell concurrent index builds to ignore us, if index qualifies */
865 alvherre 1656 GIC 65 : if (safe_index)
865 alvherre 1657 CBC 48 : set_indexsafe_procflags();
1658 :
1659 : /*
1660 : * Phase 3 of concurrent index build
1661 : *
5680 tgl 1662 ECB : * We once again wait until no transaction can have the table open with
1663 : * the index marked as read-only for updates.
1664 : */
1468 alvherre 1665 GIC 65 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
1666 : PROGRESS_CREATEIDX_PHASE_WAIT_2);
1667 65 : WaitForLockers(heaplocktag, ShareLock, true);
1668 :
1669 : /*
1670 : * Now take the "reference snapshot" that will be used by validate_index()
1671 : * to filter candidate tuples. Beware! There might still be snapshots in
1672 : * use that treat some transaction as in-progress that our reference
1673 : * snapshot treats as committed. If such a recently-committed transaction
1674 : * deleted tuples in the table, we will not include them in the index; yet
1675 : * those transactions which see the deleting one as still-in-progress will
1676 : * expect such tuples to be there once we mark the index as valid.
1677 : *
1678 : * We solve this by waiting for all endangered transactions to exit before
1679 : * we mark the index as valid.
1680 : *
6031 bruce 1681 ECB : * We also set ActiveSnapshot to this snap, since functions in indexes may
1682 : * need a snapshot.
1683 : */
5445 alvherre 1684 GIC 65 : snapshot = RegisterSnapshot(GetTransactionSnapshot());
1685 65 : PushActiveSnapshot(snapshot);
1686 :
1687 : /*
1688 : * Scan the index and the heap, insert any missing index entries.
1689 : */
6071 tgl 1690 65 : validate_index(relationId, indexRelationId, snapshot);
1691 :
1692 : /*
1693 : * Drop the reference snapshot. We must do this before waiting out other
1694 : * snapshot holders, else we will deadlock against other processes also
1695 : * doing CREATE INDEX CONCURRENTLY, which would see our snapshot as one
1696 : * they must wait for. But first, save the snapshot's xmin to use as
1697 : * limitXmin for GetCurrentVirtualXIDs().
1698 : */
3636 1699 65 : limitXmin = snapshot->xmin;
1700 :
1701 65 : PopActiveSnapshot();
3636 tgl 1702 CBC 65 : UnregisterSnapshot(snapshot);
1703 :
1704 : /*
1817 tgl 1705 ECB : * The snapshot subsystem could still contain registered snapshots that
1706 : * are holding back our process's advertised xmin; in particular, if
1707 : * default_transaction_isolation = serializable, there is a transaction
1708 : * snapshot that is still active. The CatalogSnapshot is likewise a
1709 : * hazard. To ensure no deadlocks, we must commit and start yet another
1710 : * transaction, and do our wait before any snapshot has been taken in it.
1711 : */
1817 tgl 1712 GIC 65 : CommitTransactionCommand();
1817 tgl 1713 CBC 65 : StartTransactionCommand();
1817 tgl 1714 ECB :
1715 : /* Tell concurrent index builds to ignore us, if index qualifies */
865 alvherre 1716 GIC 65 : if (safe_index)
865 alvherre 1717 CBC 48 : set_indexsafe_procflags();
865 alvherre 1718 ECB :
1719 : /* We should now definitely not be advertising any xmin. */
969 andres 1720 GIC 65 : Assert(MyProc->xmin == InvalidTransactionId);
1721 :
1722 : /*
1723 : * The index is now valid in the sense that it contains all currently
1724 : * interesting tuples. But since it might not contain tuples deleted just
1725 : * before the reference snap was taken, we have to wait out any
1472 peter 1726 ECB : * transactions that might have older snapshots.
1727 : */
1468 alvherre 1728 CBC 65 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
1729 : PROGRESS_CREATEIDX_PHASE_WAIT_3);
1468 alvherre 1730 GIC 65 : WaitForOlderSnapshots(limitXmin, true);
1731 :
1732 : /*
1733 : * Index can now be marked valid -- update its pg_index entry
1734 : */
3784 tgl 1735 65 : index_set_state_flags(indexRelationId, INDEX_CREATE_SET_VALID);
1736 :
1737 : /*
1738 : * The pg_index update will cause backends (including this one) to update
1739 : * relcache entries for the index itself, but we should also send a
1740 : * relcache inval on the parent table to force replanning of cached plans.
1741 : * Otherwise existing sessions might fail to use the new index where it
1742 : * would be useful. (Note that our earlier commits did not create reasons
1743 : * to replan; so relcache flush on the index itself was sufficient.)
1744 : */
5821 tgl 1745 CBC 65 : CacheInvalidateRelcacheByRelid(heaprelid.relId);
5821 tgl 1746 ECB :
1747 : /*
1748 : * Last thing to do is release the session-level lock on the parent table.
1749 : */
6071 tgl 1750 GIC 65 : UnlockRelationIdForSession(&heaprelid, ShareUpdateExclusiveLock);
4283 rhaas 1751 ECB :
1468 alvherre 1752 GIC 65 : pgstat_progress_end_command();
1753 :
2959 1754 65 : return address;
1755 : }
1756 :
1757 :
1758 : /*
1759 : * CheckMutability
4700 tgl 1760 ECB : * Test whether given expression is mutable
1761 : */
1762 : static bool
4700 tgl 1763 CBC 550 : CheckMutability(Expr *expr)
1764 : {
1765 : /*
1766 : * First run the expression through the planner. This has a couple of
1767 : * important consequences. First, function default arguments will get
1768 : * inserted, which may affect volatility (consider "default now()").
1769 : * Second, inline-able functions will get inlined, which may allow us to
1770 : * conclude that the function is really less volatile than it's marked. As
1771 : * an example, polymorphic functions must be marked with the most volatile
1772 : * behavior that they have for any input type, but once we inline the
4660 bruce 1773 ECB : * function we may be able to conclude that it's not so volatile for the
1774 : * particular input type we're dealing with.
1775 : *
1776 : * We assume here that expression_planner() won't scribble on its input.
4700 tgl 1777 : */
4700 tgl 1778 CBC 550 : expr = expression_planner(expr);
1779 :
1780 : /* Now we can search for non-immutable functions */
1781 550 : return contain_mutable_functions((Node *) expr);
1782 : }
1783 :
1784 :
1785 : /*
1786 : * CheckPredicate
1787 : * Checks that the given partial-index predicate is valid.
1788 : *
7937 tgl 1789 ECB : * This used to also constrain the form of the predicate to forms that
1790 : * indxpath.c could do something with. However, that seems overly
1791 : * restrictive. One useful application of partial indexes is to apply
1792 : * a UNIQUE constraint across a subset of a table, and in that scenario
1793 : * any evaluable predicate will work. So accept any predicate here
1794 : * (except ones requiring a plan), and let indxpath.c fend for itself.
1795 : */
9770 scrappy 1796 : static void
7042 tgl 1797 GIC 190 : CheckPredicate(Expr *predicate)
1798 : {
1799 : /*
1800 : * transformExpr() should have already rejected subqueries, aggregates,
1801 : * and window functions, based on the EXPR_KIND_ for a predicate.
1802 : */
1803 :
1804 : /*
1805 : * A predicate using mutable functions is probably wrong, for the same
7256 tgl 1806 ECB : * reasons that we don't allow an index expression to use one.
1807 : */
4700 tgl 1808 GIC 190 : if (CheckMutability(predicate))
7203 tgl 1809 UIC 0 : ereport(ERROR,
1810 : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2118 tgl 1811 ECB : errmsg("functions in index predicate must be marked IMMUTABLE")));
9770 scrappy 1812 GIC 190 : }
9770 scrappy 1813 ECB :
1814 : /*
5934 tgl 1815 : * Compute per-index-column information, including indexed column numbers
1816 : * or index expressions, opclasses and their options. Note, all output vectors
1817 : * should be allocated for all columns, including "including" ones.
1818 : *
1819 : * If the caller switched to the table owner, ddl_userid is the role for ACL
1820 : * checks reached without traversing opaque expressions. Otherwise, it's
1821 : * InvalidOid, and other ddl_* arguments are undefined.
1822 : */
1823 : static void
7256 tgl 1824 CBC 45381 : ComputeIndexAttrs(IndexInfo *indexInfo,
1825 : Oid *typeOidP,
1826 : Oid *collationOidP,
1827 : Oid *classOidP,
1828 : int16 *colOptionP,
1829 : List *attList, /* list of IndexElem's */
1830 : List *exclusionOpNames,
1831 : Oid relId,
1832 : const char *accessMethodName,
1833 : Oid accessMethodId,
1834 : bool amcanorder,
1835 : bool isconstraint,
1836 : Oid ddl_userid,
1837 : int ddl_sec_context,
1838 : int *ddl_save_nestlevel)
9770 scrappy 1839 ECB : {
1840 : ListCell *nextExclOp;
1841 : ListCell *lc;
4871 tgl 1842 : int attn;
1828 teodor 1843 GIC 45381 : int nkeycols = indexInfo->ii_NumIndexKeyAttrs;
1844 : Oid save_userid;
1845 : int save_sec_context;
1846 :
1847 : /* Allocate space for exclusion operator info, if needed */
4871 tgl 1848 45381 : if (exclusionOpNames)
1849 : {
1828 teodor 1850 65 : Assert(list_length(exclusionOpNames) == nkeycols);
209 peter 1851 GNC 65 : indexInfo->ii_ExclusionOps = palloc_array(Oid, nkeycols);
1852 65 : indexInfo->ii_ExclusionProcs = palloc_array(Oid, nkeycols);
1853 65 : indexInfo->ii_ExclusionStrats = palloc_array(uint16, nkeycols);
4871 tgl 1854 GIC 65 : nextExclOp = list_head(exclusionOpNames);
1855 : }
1856 : else
1857 45316 : nextExclOp = NULL;
9733 scrappy 1858 ECB :
288 noah 1859 GIC 45381 : if (OidIsValid(ddl_userid))
1860 45330 : GetUserIdAndSecContext(&save_userid, &save_sec_context);
1861 :
1862 : /*
1863 : * process attributeList
1864 : */
4871 tgl 1865 45381 : attn = 0;
1866 117150 : foreach(lc, attList)
1867 : {
1868 71797 : IndexElem *attribute = (IndexElem *) lfirst(lc);
7256 tgl 1869 ECB : Oid atttype;
4443 peter_e 1870 EUB : Oid attcollation;
1871 :
1872 : /*
5934 tgl 1873 ECB : * Process the column-or-expression to be indexed.
1874 : */
7256 tgl 1875 GIC 71797 : if (attribute->name != NULL)
1876 : {
1877 : /* Simple index attribute */
1878 : HeapTuple atttuple;
1879 : Form_pg_attribute attform;
1880 :
1881 71428 : Assert(attribute->expr == NULL);
1882 71428 : atttuple = SearchSysCacheAttName(relId, attribute->name);
1883 71428 : if (!HeapTupleIsValid(atttuple))
1884 : {
6913 tgl 1885 ECB : /* difference in error message spellings is historical */
6913 tgl 1886 GIC 15 : if (isconstraint)
1887 9 : ereport(ERROR,
1888 : (errcode(ERRCODE_UNDEFINED_COLUMN),
1889 : errmsg("column \"%s\" named in key does not exist",
1890 : attribute->name)));
1891 : else
1892 6 : ereport(ERROR,
1893 : (errcode(ERRCODE_UNDEFINED_COLUMN),
1894 : errmsg("column \"%s\" does not exist",
1895 : attribute->name)));
1896 : }
7256 1897 71413 : attform = (Form_pg_attribute) GETSTRUCT(atttuple);
1823 teodor 1898 71413 : indexInfo->ii_IndexAttrNumbers[attn] = attform->attnum;
7256 tgl 1899 71413 : atttype = attform->atttypid;
4443 peter_e 1900 71413 : attcollation = attform->attcollation;
7256 tgl 1901 71413 : ReleaseSysCache(atttuple);
1902 : }
1903 : else
7256 tgl 1904 ECB : {
1905 : /* Index expression */
4382 bruce 1906 GIC 369 : Node *expr = attribute->expr;
1907 :
4399 tgl 1908 369 : Assert(expr != NULL);
1828 teodor 1909 ECB :
1828 teodor 1910 GIC 369 : if (attn >= nkeycols)
1828 teodor 1911 LBC 0 : ereport(ERROR,
1828 teodor 1912 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1913 : errmsg("expressions are not supported in included columns")));
4399 tgl 1914 CBC 369 : atttype = exprType(expr);
1915 369 : attcollation = exprCollation(expr);
1916 :
1917 : /*
3260 bruce 1918 ECB : * Strip any top-level COLLATE clause. This ensures that we treat
1919 : * "x COLLATE y" and "(x COLLATE y)" alike.
7256 tgl 1920 : */
4399 tgl 1921 CBC 390 : while (IsA(expr, CollateExpr))
4399 tgl 1922 GIC 21 : expr = (Node *) ((CollateExpr *) expr)->arg;
1923 :
1924 369 : if (IsA(expr, Var) &&
1925 9 : ((Var *) expr)->varattno != InvalidAttrNumber)
4399 tgl 1926 ECB : {
1927 : /*
1928 : * User wrote "(column)" or "(column COLLATE something)".
1929 : * Treat it like simple attribute anyway.
1930 : */
1823 teodor 1931 GIC 9 : indexInfo->ii_IndexAttrNumbers[attn] = ((Var *) expr)->varattno;
1932 : }
1933 : else
1934 : {
1809 tgl 1935 360 : indexInfo->ii_IndexAttrNumbers[attn] = 0; /* marks expression */
4399 tgl 1936 CBC 360 : indexInfo->ii_Expressions = lappend(indexInfo->ii_Expressions,
1937 : expr);
1938 :
1939 : /*
1940 : * transformExpr() should have already rejected subqueries,
1941 : * aggregates, and window functions, based on the EXPR_KIND_
3894 tgl 1942 ECB : * for an index expression.
4399 1943 : */
1944 :
1945 : /*
1946 : * An expression using mutable functions is probably wrong,
1947 : * since if you aren't going to get the same result for the
1948 : * same data every time, it's not clear what the index entries
1949 : * mean at all.
1950 : */
4399 tgl 1951 GIC 360 : if (CheckMutability((Expr *) expr))
4399 tgl 1952 UIC 0 : ereport(ERROR,
4399 tgl 1953 ECB : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1954 : errmsg("functions in index expression must be marked IMMUTABLE")));
1955 : }
1956 : }
1957 :
4092 rhaas 1958 CBC 71782 : typeOidP[attn] = atttype;
4092 rhaas 1959 ECB :
1823 teodor 1960 : /*
1809 tgl 1961 : * Included columns have no collation, no opclass and no ordering
1962 : * options.
1963 : */
1823 teodor 1964 GIC 71782 : if (attn >= nkeycols)
1965 : {
1966 317 : if (attribute->collation)
1823 teodor 1967 LBC 0 : ereport(ERROR,
1968 : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1823 teodor 1969 ECB : errmsg("including column does not support a collation")));
1823 teodor 1970 GIC 317 : if (attribute->opclass)
1823 teodor 1971 LBC 0 : ereport(ERROR,
1823 teodor 1972 EUB : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1973 : errmsg("including column does not support an operator class")));
1823 teodor 1974 GIC 317 : if (attribute->ordering != SORTBY_DEFAULT)
1823 teodor 1975 LBC 0 : ereport(ERROR,
1823 teodor 1976 ECB : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1977 : errmsg("including column does not support ASC/DESC options")));
1823 teodor 1978 GIC 317 : if (attribute->nulls_ordering != SORTBY_NULLS_DEFAULT)
1823 teodor 1979 UIC 0 : ereport(ERROR,
1980 : (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1981 : errmsg("including column does not support NULLS FIRST/LAST options")));
1823 teodor 1982 ECB :
1823 teodor 1983 CBC 317 : classOidP[attn] = InvalidOid;
1823 teodor 1984 GIC 317 : colOptionP[attn] = 0;
1823 teodor 1985 CBC 317 : collationOidP[attn] = InvalidOid;
1986 317 : attn++;
1987 :
1823 teodor 1988 GIC 317 : continue;
1989 : }
1990 :
1991 : /*
288 noah 1992 ECB : * Apply collation override if any. Use of ddl_userid is necessary
1993 : * due to ACL checks therein, and it's safe because collations don't
1994 : * contain opaque expressions (or non-opaque expressions).
1995 : */
4443 peter_e 1996 CBC 71465 : if (attribute->collation)
288 noah 1997 ECB : {
288 noah 1998 GIC 65 : if (OidIsValid(ddl_userid))
1999 : {
2000 65 : AtEOXact_GUC(false, *ddl_save_nestlevel);
2001 65 : SetUserIdAndSecContext(ddl_userid, ddl_sec_context);
2002 : }
4404 tgl 2003 65 : attcollation = get_collation_oid(attribute->collation, false);
288 noah 2004 64 : if (OidIsValid(ddl_userid))
2005 : {
2006 64 : SetUserIdAndSecContext(save_userid, save_sec_context);
2007 64 : *ddl_save_nestlevel = NewGUCNestLevel();
2008 : }
2009 : }
2010 :
2011 : /*
4404 tgl 2012 ECB : * Check we have a collation iff it's a collatable type. The only
4404 tgl 2013 EUB : * expected failures here are (1) COLLATE applied to a noncollatable
2014 : * type, or (2) index expression had an unresolved collation. But we
2015 : * might as well code this to be a complete consistency check.
2016 : */
4404 tgl 2017 GIC 71464 : if (type_is_collatable(atttype))
2018 : {
4404 tgl 2019 CBC 12321 : if (!OidIsValid(attcollation))
4404 tgl 2020 UIC 0 : ereport(ERROR,
2021 : (errcode(ERRCODE_INDETERMINATE_COLLATION),
2022 : errmsg("could not determine which collation to use for index expression"),
2023 : errhint("Use the COLLATE clause to set the collation explicitly.")));
2024 : }
4404 tgl 2025 ECB : else
2026 : {
4404 tgl 2027 CBC 59143 : if (OidIsValid(attcollation))
4443 peter_e 2028 GBC 9 : ereport(ERROR,
2029 : (errcode(ERRCODE_DATATYPE_MISMATCH),
2030 : errmsg("collations are not supported by type %s",
4443 peter_e 2031 ECB : format_type_be(atttype))));
4443 peter_e 2032 EUB : }
2033 :
4443 peter_e 2034 GIC 71455 : collationOidP[attn] = attcollation;
4443 peter_e 2035 ECB :
5934 tgl 2036 EUB : /*
2037 : * Identify the opclass to use. Use of ddl_userid is necessary due to
2038 : * ACL checks therein. This is safe despite opclasses containing
288 noah 2039 ECB : * opaque expressions (specifically, functions), because only
288 noah 2040 EUB : * superusers can define opclasses.
2041 : */
288 noah 2042 GIC 71455 : if (OidIsValid(ddl_userid))
2043 : {
288 noah 2044 CBC 71401 : AtEOXact_GUC(false, *ddl_save_nestlevel);
2045 71401 : SetUserIdAndSecContext(ddl_userid, ddl_sec_context);
288 noah 2046 ECB : }
2314 rhaas 2047 CBC 71455 : classOidP[attn] = ResolveOpClass(attribute->opclass,
2048 : atttype,
2314 rhaas 2049 ECB : accessMethodName,
2050 : accessMethodId);
288 noah 2051 GIC 71452 : if (OidIsValid(ddl_userid))
2052 : {
2053 71398 : SetUserIdAndSecContext(save_userid, save_sec_context);
2054 71398 : *ddl_save_nestlevel = NewGUCNestLevel();
2055 : }
2056 :
4871 tgl 2057 ECB : /*
2058 : * Identify the exclusion operator, if any.
2059 : */
4871 tgl 2060 GIC 71452 : if (nextExclOp)
4871 tgl 2061 ECB : {
4790 bruce 2062 CBC 79 : List *opname = (List *) lfirst(nextExclOp);
2063 : Oid opid;
4790 bruce 2064 ECB : Oid opfamily;
2065 : int strat;
2066 :
4871 tgl 2067 : /*
2068 : * Find the operator --- it must accept the column datatype
2069 : * without runtime coercion (but binary compatibility is OK).
2070 : * Operators contain opaque expressions (specifically, functions).
2071 : * compatible_oper_opid() boils down to oper() and
2072 : * IsBinaryCoercible(). PostgreSQL would have security problems
2073 : * elsewhere if oper() started calling opaque expressions.
2074 : */
288 noah 2075 GIC 79 : if (OidIsValid(ddl_userid))
2076 : {
2077 79 : AtEOXact_GUC(false, *ddl_save_nestlevel);
288 noah 2078 CBC 79 : SetUserIdAndSecContext(ddl_userid, ddl_sec_context);
2079 : }
4871 tgl 2080 79 : opid = compatible_oper_opid(opname, atttype, atttype, false);
288 noah 2081 GBC 79 : if (OidIsValid(ddl_userid))
2082 : {
288 noah 2083 GIC 79 : SetUserIdAndSecContext(save_userid, save_sec_context);
2084 79 : *ddl_save_nestlevel = NewGUCNestLevel();
2085 : }
2086 :
2087 : /*
4871 tgl 2088 ECB : * Only allow commutative operators to be used in exclusion
2089 : * constraints. If X conflicts with Y, but Y does not conflict
2090 : * with X, bad things will happen.
2091 : */
4871 tgl 2092 GIC 79 : if (get_commutator(opid) != opid)
4871 tgl 2093 UIC 0 : ereport(ERROR,
2094 : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
4871 tgl 2095 ECB : errmsg("operator %s is not commutative",
2096 : format_operator(opid)),
2097 : errdetail("Only commutative operators can be used in exclusion constraints.")));
2098 :
2099 : /*
2100 : * Operator must be a member of the right opfamily, too
2101 : */
4871 tgl 2102 GIC 79 : opfamily = get_opclass_family(classOidP[attn]);
4871 tgl 2103 CBC 79 : strat = get_op_opfamily_strategy(opid, opfamily);
4871 tgl 2104 GIC 79 : if (strat == 0)
4871 tgl 2105 ECB : {
4790 bruce 2106 : HeapTuple opftuple;
2107 : Form_pg_opfamily opfform;
4871 tgl 2108 :
2109 : /*
2110 : * attribute->opclass might not explicitly name the opfamily,
2111 : * so fetch the name of the selected opfamily for use in the
2112 : * error message.
2113 : */
4802 rhaas 2114 LBC 0 : opftuple = SearchSysCache1(OPFAMILYOID,
4802 rhaas 2115 ECB : ObjectIdGetDatum(opfamily));
4871 tgl 2116 UIC 0 : if (!HeapTupleIsValid(opftuple))
2117 0 : elog(ERROR, "cache lookup failed for opfamily %u",
2118 : opfamily);
2119 0 : opfform = (Form_pg_opfamily) GETSTRUCT(opftuple);
2120 :
4871 tgl 2121 LBC 0 : ereport(ERROR,
2122 : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
4871 tgl 2123 ECB : errmsg("operator %s is not a member of operator family \"%s\"",
2124 : format_operator(opid),
2125 : NameStr(opfform->opfname)),
2126 : errdetail("The exclusion operator must be related to the index operator class for the constraint.")));
2127 : }
2128 :
4871 tgl 2129 GIC 79 : indexInfo->ii_ExclusionOps[attn] = opid;
2130 79 : indexInfo->ii_ExclusionProcs[attn] = get_opcode(opid);
2131 79 : indexInfo->ii_ExclusionStrats[attn] = strat;
1364 2132 79 : nextExclOp = lnext(exclusionOpNames, nextExclOp);
2133 : }
2134 :
2135 : /*
5624 bruce 2136 ECB : * Set up the per-column options (indoption field). For now, this is
2137 : * zero for any un-ordered index, while ordered indexes have DESC and
2138 : * NULLS FIRST/LAST options.
5934 tgl 2139 : */
5934 tgl 2140 GIC 71452 : colOptionP[attn] = 0;
5934 tgl 2141 CBC 71452 : if (amcanorder)
5934 tgl 2142 ECB : {
2143 : /* default ordering is ASC */
5934 tgl 2144 CBC 70244 : if (attribute->ordering == SORTBY_DESC)
2145 21 : colOptionP[attn] |= INDOPTION_DESC;
2146 : /* default null ordering is LAST for ASC, FIRST for DESC */
5934 tgl 2147 GIC 70244 : if (attribute->nulls_ordering == SORTBY_NULLS_DEFAULT)
2148 : {
2149 70229 : if (attribute->ordering == SORTBY_DESC)
2150 15 : colOptionP[attn] |= INDOPTION_NULLS_FIRST;
2151 : }
2152 15 : else if (attribute->nulls_ordering == SORTBY_NULLS_FIRST)
5934 tgl 2153 CBC 6 : colOptionP[attn] |= INDOPTION_NULLS_FIRST;
5934 tgl 2154 EUB : }
2155 : else
2156 : {
2157 : /* index AM does not support ordering */
5934 tgl 2158 GIC 1208 : if (attribute->ordering != SORTBY_DEFAULT)
5934 tgl 2159 UIC 0 : ereport(ERROR,
2160 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2161 : errmsg("access method \"%s\" does not support ASC/DESC options",
2162 : accessMethodName)));
5934 tgl 2163 CBC 1208 : if (attribute->nulls_ordering != SORTBY_NULLS_DEFAULT)
5934 tgl 2164 LBC 0 : ereport(ERROR,
5934 tgl 2165 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2166 : errmsg("access method \"%s\" does not support NULLS FIRST/LAST options",
2167 : accessMethodName)));
2168 : }
2169 :
2170 : /* Set up the per-column opclass options (attoptions field). */
1105 akorotkov 2171 GIC 71452 : if (attribute->opclassopts)
2172 : {
2173 66 : Assert(attn < nkeycols);
2174 :
1105 akorotkov 2175 GBC 66 : if (!indexInfo->ii_OpclassOptions)
1105 akorotkov 2176 GIC 63 : indexInfo->ii_OpclassOptions =
209 peter 2177 GNC 63 : palloc0_array(Datum, indexInfo->ii_NumIndexAttrs);
1105 akorotkov 2178 EUB :
1105 akorotkov 2179 GIC 66 : indexInfo->ii_OpclassOptions[attn] =
1105 akorotkov 2180 GBC 66 : transformRelOptions((Datum) 0, attribute->opclassopts,
2181 : NULL, NULL, false, false);
1105 akorotkov 2182 EUB : }
2183 :
8304 tgl 2184 GIC 71452 : attn++;
2185 : }
8444 2186 45353 : }
2187 :
2188 : /*
2189 : * Resolve possibly-defaulted operator class specification
2314 rhaas 2190 ECB : *
1130 tgl 2191 : * Note: This is used to resolve operator class specifications in index and
2314 rhaas 2192 : * partition key definitions.
7256 tgl 2193 : */
2194 : Oid
2314 rhaas 2195 GIC 71521 : ResolveOpClass(List *opclass, Oid attrType,
2196 : const char *accessMethodName, Oid accessMethodId)
2197 : {
2198 : char *schemaname;
2199 : char *opcname;
2200 : HeapTuple tuple;
1601 andres 2201 ECB : Form_pg_opclass opform;
8384 tgl 2202 : Oid opClassId,
2203 : opInputType;
2204 :
7256 tgl 2205 CBC 71521 : if (opclass == NIL)
8444 tgl 2206 ECB : {
2207 : /* no operator class specified, so find the default */
7901 tgl 2208 CBC 8411 : opClassId = GetDefaultOpClass(attrType, accessMethodId);
7901 tgl 2209 GIC 8411 : if (!OidIsValid(opClassId))
7203 tgl 2210 CBC 3 : ereport(ERROR,
7203 tgl 2211 ECB : (errcode(ERRCODE_UNDEFINED_OBJECT),
2212 : errmsg("data type %s has no default operator class for access method \"%s\"",
2213 : format_type_be(attrType), accessMethodName),
2214 : errhint("You must specify an operator class for the index or define a default operator class for the data type.")));
7901 tgl 2215 GIC 8408 : return opClassId;
2216 : }
2217 :
2218 : /*
7662 tgl 2219 ECB : * Specific opclass name given, so look up the opclass.
8386 tgl 2220 EUB : */
2221 :
2222 : /* deconstruct the name list */
7256 tgl 2223 GIC 63110 : DeconstructQualifiedName(opclass, &schemaname, &opcname);
7662 tgl 2224 ECB :
7662 tgl 2225 GBC 63110 : if (schemaname)
2226 : {
2227 : /* Look in specific schema only */
2228 : Oid namespaceId;
2229 :
3725 bruce 2230 GIC 5 : namespaceId = LookupExplicitNamespace(schemaname, false);
4802 rhaas 2231 5 : tuple = SearchSysCache3(CLAAMNAMENSP,
4802 rhaas 2232 ECB : ObjectIdGetDatum(accessMethodId),
2233 : PointerGetDatum(opcname),
2234 : ObjectIdGetDatum(namespaceId));
2235 : }
7662 tgl 2236 : else
2237 : {
2238 : /* Unqualified opclass name, so search the search path */
7662 tgl 2239 GIC 63105 : opClassId = OpclassnameGetOpcid(accessMethodId, opcname);
7662 tgl 2240 CBC 63105 : if (!OidIsValid(opClassId))
7203 2241 6 : ereport(ERROR,
2242 : (errcode(ERRCODE_UNDEFINED_OBJECT),
2243 : errmsg("operator class \"%s\" does not exist for access method \"%s\"",
2244 : opcname, accessMethodName)));
4802 rhaas 2245 63099 : tuple = SearchSysCache1(CLAOID, ObjectIdGetDatum(opClassId));
2246 : }
7662 tgl 2247 ECB :
7901 tgl 2248 GIC 63104 : if (!HeapTupleIsValid(tuple))
7203 tgl 2249 UIC 0 : ereport(ERROR,
2250 : (errcode(ERRCODE_UNDEFINED_OBJECT),
2251 : errmsg("operator class \"%s\" does not exist for access method \"%s\"",
2252 : NameListToString(opclass), accessMethodName)));
2253 :
2254 : /*
2255 : * Verify that the index operator class accepts this datatype. Note we
6385 bruce 2256 ECB : * will accept binary compatibility.
2257 : */
1601 andres 2258 GIC 63104 : opform = (Form_pg_opclass) GETSTRUCT(tuple);
2259 63104 : opClassId = opform->oid;
2260 63104 : opInputType = opform->opcintype;
2261 :
7508 tgl 2262 63104 : if (!IsBinaryCoercible(attrType, opInputType))
7203 tgl 2263 UIC 0 : ereport(ERROR,
2264 : (errcode(ERRCODE_DATATYPE_MISMATCH),
2265 : errmsg("operator class \"%s\" does not accept data type %s",
2118 tgl 2266 ECB : NameListToString(opclass), format_type_be(attrType))));
2267 :
7662 tgl 2268 GIC 63104 : ReleaseSysCache(tuple);
8384 tgl 2269 ECB :
7901 tgl 2270 CBC 63104 : return opClassId;
7901 tgl 2271 ECB : }
2272 :
2273 : /*
2274 : * GetDefaultOpClass
2275 : *
6267 2276 : * Given the OIDs of a datatype and an access method, find the default
2277 : * operator class, if any. Returns InvalidOid if there is none.
2278 : */
2279 : Oid
6267 tgl 2280 GIC 103313 : GetDefaultOpClass(Oid type_id, Oid am_id)
2281 : {
5951 2282 103313 : Oid result = InvalidOid;
7901 2283 103313 : int nexact = 0;
7901 tgl 2284 CBC 103313 : int ncompatible = 0;
5951 tgl 2285 GIC 103313 : int ncompatiblepreferred = 0;
6267 tgl 2286 ECB : Relation rel;
2287 : ScanKeyData skey[1];
2288 : SysScanDesc scan;
2289 : HeapTuple tup;
2290 : TYPCATEGORY tcategory;
8444 2291 :
7541 2292 : /* If it's a domain, look at the base type instead */
6267 tgl 2293 GIC 103313 : type_id = getBaseType(type_id);
2294 :
5951 2295 103313 : tcategory = TypeCategory(type_id);
2296 :
2297 : /*
2298 : * We scan through all the opclasses available for the access method,
2299 : * looking for one that is marked default and matches the target type
7901 tgl 2300 ECB : * (either exactly or binary-compatibly, but prefer an exact match).
2301 : *
5951 2302 : * We could find more than one binary-compatible match. If just one is
2303 : * for a preferred type, use that one; otherwise we fail, forcing the user
2304 : * to specify which one he wants. (The preferred-type special case is a
2305 : * kluge for varchar: it's binary-compatible to both text and bpchar, so
2306 : * we need a tiebreaker.) If we find more than one exact match, then
2307 : * someone put bogus entries in pg_opclass.
2308 : */
1539 andres 2309 CBC 103313 : rel = table_open(OperatorClassRelationId, AccessShareLock);
6267 tgl 2310 EUB :
6267 tgl 2311 GIC 103313 : ScanKeyInit(&skey[0],
2312 : Anum_pg_opclass_opcmethod,
2313 : BTEqualStrategyNumber, F_OIDEQ,
2314 : ObjectIdGetDatum(am_id));
2315 :
2316 103313 : scan = systable_beginscan(rel, OpclassAmNameNspIndexId, true,
2317 : NULL, 1, skey);
2318 :
6267 tgl 2319 CBC 4619261 : while (HeapTupleIsValid(tup = systable_getnext(scan)))
8384 tgl 2320 ECB : {
6267 tgl 2321 CBC 4515948 : Form_pg_opclass opclass = (Form_pg_opclass) GETSTRUCT(tup);
2322 :
5951 tgl 2323 ECB : /* ignore altogether if not a default opclass */
5951 tgl 2324 GBC 4515948 : if (!opclass->opcdefault)
5951 tgl 2325 GIC 641067 : continue;
2326 3874881 : if (opclass->opcintype == type_id)
2327 : {
2328 93491 : nexact++;
1601 andres 2329 CBC 93491 : result = opclass->oid;
2330 : }
5951 tgl 2331 5843647 : else if (nexact == 0 &&
5951 tgl 2332 GIC 2062257 : IsBinaryCoercible(type_id, opclass->opcintype))
2333 : {
2334 16856 : if (IsPreferredType(tcategory, opclass->opcintype))
2335 : {
2336 1998 : ncompatiblepreferred++;
1601 andres 2337 1998 : result = opclass->oid;
2338 : }
5951 tgl 2339 14858 : else if (ncompatiblepreferred == 0)
2340 : {
7901 tgl 2341 CBC 14858 : ncompatible++;
1601 andres 2342 GIC 14858 : result = opclass->oid;
7901 tgl 2343 ECB : }
8384 2344 : }
2345 : }
2346 :
6267 tgl 2347 GIC 103313 : systable_endscan(scan);
2348 :
1539 andres 2349 103313 : table_close(rel, AccessShareLock);
2350 :
2351 : /* raise error if pg_opclass contains inconsistent data */
5951 tgl 2352 103313 : if (nexact > 1)
7203 tgl 2353 UIC 0 : ereport(ERROR,
7203 tgl 2354 ECB : (errcode(ERRCODE_DUPLICATE_OBJECT),
2355 : errmsg("there are multiple default operator classes for data type %s",
2118 2356 : format_type_be(type_id))));
2357 :
5951 tgl 2358 GIC 103313 : if (nexact == 1 ||
2359 7825 : ncompatiblepreferred == 1 ||
2360 7825 : (ncompatiblepreferred == 0 && ncompatible == 1))
2361 102311 : return result;
2362 :
7901 2363 1002 : return InvalidOid;
2364 : }
2365 :
2366 : /*
2367 : * makeObjectName()
2368 : *
2369 : * Create a name for an implicitly created index, sequence, constraint,
1861 alvherre 2370 ECB : * extended statistics, etc.
2371 : *
6877 tgl 2372 : * The parameters are typically: the original table name, the original field
2373 : * name, and a "type" string (such as "seq" or "pkey"). The field name
2374 : * and/or type can be NULL if not relevant.
2375 : *
2376 : * The result is a palloc'd string.
2377 : *
2378 : * The basic result we want is "name1_name2_label", omitting "_name2" or
2379 : * "_label" when those parameters are NULL. However, we must generate
2380 : * a name with less than NAMEDATALEN characters! So, we truncate one or
2381 : * both names if necessary to make a short-enough string. The label part
2382 : * is never truncated (so it had better be reasonably short).
2383 : *
2384 : * The caller is responsible for checking uniqueness of the generated
2385 : * name and retrying as needed; retrying will be done by altering the
2386 : * "label" string (which is why we never truncate that part).
6913 2387 : */
2388 : char *
6877 tgl 2389 CBC 94724 : makeObjectName(const char *name1, const char *name2, const char *label)
6913 tgl 2390 ECB : {
2391 : char *name;
6877 tgl 2392 CBC 94724 : int overhead = 0; /* chars needed for label and underscores */
6877 tgl 2393 ECB : int availchars; /* chars available for name(s) */
2394 : int name1chars; /* chars allocated to name1 */
2395 : int name2chars; /* chars allocated to name2 */
2396 : int ndx;
2397 :
6877 tgl 2398 CBC 94724 : name1chars = strlen(name1);
6877 tgl 2399 GIC 94724 : if (name2)
6877 tgl 2400 ECB : {
6877 tgl 2401 GIC 90650 : name2chars = strlen(name2);
6877 tgl 2402 CBC 90650 : overhead++; /* allow for separating underscore */
6877 tgl 2403 ECB : }
2404 : else
6877 tgl 2405 GIC 4074 : name2chars = 0;
2406 94724 : if (label)
2407 11334 : overhead += strlen(label) + 1;
6877 tgl 2408 ECB :
6877 tgl 2409 GIC 94724 : availchars = NAMEDATALEN - 1 - overhead;
6877 tgl 2410 CBC 94724 : Assert(availchars > 0); /* else caller chose a bad label */
2411 :
2412 : /*
439 michael 2413 ECB : * If we must truncate, preferentially truncate the longer name. This
6385 bruce 2414 EUB : * logic could be expressed without a loop, but it's simple and obvious as
2415 : * a loop.
2416 : */
6877 tgl 2417 GIC 94757 : while (name1chars + name2chars > availchars)
2418 : {
6877 tgl 2419 CBC 33 : if (name1chars > name2chars)
6877 tgl 2420 LBC 0 : name1chars--;
6877 tgl 2421 ECB : else
6877 tgl 2422 CBC 33 : name2chars--;
2423 : }
6877 tgl 2424 ECB :
6501 neilc 2425 GIC 94724 : name1chars = pg_mbcliplen(name1, name1chars, name1chars);
6877 tgl 2426 94724 : if (name2)
2427 90650 : name2chars = pg_mbcliplen(name2, name2chars, name2chars);
2428 :
2429 : /* Now construct the string using the chosen lengths */
2430 94724 : name = palloc(name1chars + name2chars + overhead + 1);
2431 94724 : memcpy(name, name1, name1chars);
2432 94724 : ndx = name1chars;
2433 94724 : if (name2)
2434 : {
2435 90650 : name[ndx++] = '_';
2436 90650 : memcpy(name + ndx, name2, name2chars);
2437 90650 : ndx += name2chars;
2438 : }
2439 94724 : if (label)
2440 : {
2441 11334 : name[ndx++] = '_';
2442 11334 : strcpy(name + ndx, label);
2443 : }
2444 : else
2445 83390 : name[ndx] = '\0';
2446 :
2447 94724 : return name;
2448 : }
2449 :
6877 tgl 2450 ECB : /*
2451 : * Select a nonconflicting name for a new relation. This is ordinarily
2452 : * used to choose index names (which is why it's here) but it can also
2453 : * be used for sequences, or any autogenerated relation kind.
2454 : *
2455 : * name1, name2, and label are used the same way as for makeObjectName(),
2456 : * except that the label can't be NULL; digits will be appended to the label
2457 : * if needed to create a name that is unique within the specified namespace.
2458 : *
1678 2459 : * If isconstraint is true, we also avoid choosing a name matching any
2460 : * existing constraint in the same namespace. (This is stricter than what
2461 : * Postgres itself requires, but the SQL standard says that constraint names
2462 : * should be unique within schemas, so we follow that for autogenerated
2463 : * constraint names.)
2464 : *
2465 : * Note: it is theoretically possible to get a collision anyway, if someone
6877 2466 : * else chooses the same name concurrently. This is fairly unlikely to be
2467 : * a problem in practice, especially if one is holding an exclusive lock on
2468 : * the relation identified by name1. However, if choosing multiple names
2469 : * within a single command, you'd better create the new object and do
2470 : * CommandCounterIncrement before choosing the next one!
2471 : *
2472 : * Returns a palloc'd string.
2473 : */
2474 : char *
6877 tgl 2475 GIC 5775 : ChooseRelationName(const char *name1, const char *name2,
2476 : const char *label, Oid namespaceid,
2477 : bool isconstraint)
6877 tgl 2478 ECB : {
6877 tgl 2479 GIC 5775 : int pass = 0;
6877 tgl 2480 CBC 5775 : char *relname = NULL;
6877 tgl 2481 EUB : char modlabel[NAMEDATALEN];
2482 :
6877 tgl 2483 ECB : /* try the unmodified label first */
972 peter 2484 GIC 5775 : strlcpy(modlabel, label, sizeof(modlabel));
2485 :
6913 tgl 2486 ECB : for (;;)
2487 : {
6877 tgl 2488 CBC 5873 : relname = makeObjectName(name1, name2, modlabel);
2489 :
5015 peter_e 2490 GIC 5873 : if (!OidIsValid(get_relname_relid(relname, namespaceid)))
1678 tgl 2491 ECB : {
1678 tgl 2492 CBC 5778 : if (!isconstraint ||
2493 3840 : !ConstraintNameExists(relname, namespaceid))
1678 tgl 2494 ECB : break;
2495 : }
6913 2496 :
2497 : /* found a conflict, so try a new name component */
6877 tgl 2498 CBC 98 : pfree(relname);
6877 tgl 2499 GIC 98 : snprintf(modlabel, sizeof(modlabel), "%s%d", label, ++pass);
6913 tgl 2500 ECB : }
2501 :
6877 tgl 2502 CBC 5775 : return relname;
6913 tgl 2503 ECB : }
2504 :
2505 : /*
4855 2506 : * Select the name to be used for an index.
2507 : *
2508 : * The argument list is pretty ad-hoc :-(
2509 : */
2510 : static char *
4855 tgl 2511 GIC 4850 : ChooseIndexName(const char *tabname, Oid namespaceId,
2512 : List *colnames, List *exclusionOpNames,
2513 : bool primary, bool isconstraint)
2514 : {
2515 : char *indexname;
2516 :
2517 4850 : if (primary)
2518 : {
2519 : /* the primary key's name does not depend on the specific column(s) */
2520 3472 : indexname = ChooseRelationName(tabname,
2521 : NULL,
2522 : "pkey",
2523 : namespaceId,
2524 : true);
2525 : }
2526 1378 : else if (exclusionOpNames != NIL)
2527 : {
2528 45 : indexname = ChooseRelationName(tabname,
2529 45 : ChooseIndexNameAddition(colnames),
2530 : "excl",
2531 : namespaceId,
2532 : true);
2533 : }
2534 1333 : else if (isconstraint)
2535 : {
4855 tgl 2536 CBC 320 : indexname = ChooseRelationName(tabname,
4855 tgl 2537 GIC 320 : ChooseIndexNameAddition(colnames),
2538 : "key",
2539 : namespaceId,
1678 tgl 2540 ECB : true);
4855 2541 : }
2542 : else
2543 : {
4855 tgl 2544 GIC 1013 : indexname = ChooseRelationName(tabname,
4855 tgl 2545 CBC 1013 : ChooseIndexNameAddition(colnames),
2546 : "idx",
2547 : namespaceId,
2548 : false);
4855 tgl 2549 ECB : }
2550 :
4855 tgl 2551 CBC 4850 : return indexname;
2552 : }
4855 tgl 2553 ECB :
2554 : /*
2555 : * Generate "name2" for a new index given the list of column names for it
2556 : * (as produced by ChooseIndexColumnNames). This will be passed to
2557 : * ChooseRelationName along with the parent table name and a suitable label.
2558 : *
2559 : * We know that less than NAMEDATALEN characters will actually be used,
2560 : * so we can truncate the result once we've generated that many.
2561 : *
2562 : * XXX See also ChooseForeignKeyConstraintNameAddition and
1488 peter 2563 : * ChooseExtendedStatisticNameAddition.
2564 : */
2565 : static char *
4855 tgl 2566 GIC 1378 : ChooseIndexNameAddition(List *colnames)
2567 : {
2568 : char buf[NAMEDATALEN * 2];
2569 1378 : int buflen = 0;
2570 : ListCell *lc;
2571 :
4855 tgl 2572 CBC 1378 : buf[0] = '\0';
4855 tgl 2573 GIC 3213 : foreach(lc, colnames)
2574 : {
2575 1835 : const char *name = (const char *) lfirst(lc);
2576 :
2577 1835 : if (buflen > 0)
4790 bruce 2578 CBC 457 : buf[buflen++] = '_'; /* insert _ between names */
2579 :
2580 : /*
4855 tgl 2581 ECB : * At this point we have buflen <= NAMEDATALEN. name should be less
2582 : * than NAMEDATALEN already, but use strlcpy for paranoia.
2583 : */
4855 tgl 2584 GIC 1835 : strlcpy(buf + buflen, name, NAMEDATALEN);
2585 1835 : buflen += strlen(buf + buflen);
2586 1835 : if (buflen >= NAMEDATALEN)
4855 tgl 2587 LBC 0 : break;
2588 : }
4855 tgl 2589 CBC 1378 : return pstrdup(buf);
4855 tgl 2590 ECB : }
2591 :
2592 : /*
2593 : * Select the actual names to be used for the columns of an index, given the
2594 : * list of IndexElems for the columns. This is mostly about ensuring the
2595 : * names are unique so we don't get a conflicting-attribute-names error.
2596 : *
2597 : * Returns a List of plain strings (char *, not String nodes).
2598 : */
2599 : static List *
4855 tgl 2600 GIC 45374 : ChooseIndexColumnNames(List *indexElems)
2601 : {
2602 45374 : List *result = NIL;
2603 : ListCell *lc;
2604 :
4855 tgl 2605 CBC 117190 : foreach(lc, indexElems)
4855 tgl 2606 ECB : {
4855 tgl 2607 GIC 71816 : IndexElem *ielem = (IndexElem *) lfirst(lc);
2608 : const char *origname;
2609 : const char *curname;
2610 : int i;
2611 : char buf[NAMEDATALEN];
4855 tgl 2612 ECB :
2613 : /* Get the preliminary name from the IndexElem */
4855 tgl 2614 GIC 71816 : if (ielem->indexcolname)
2118 2615 1046 : origname = ielem->indexcolname; /* caller-specified name */
4855 2616 70770 : else if (ielem->name)
2118 2617 70589 : origname = ielem->name; /* simple column reference */
2618 : else
4790 bruce 2619 181 : origname = "expr"; /* default name for expression */
2620 :
2621 : /* If it conflicts with any previous column, tweak it */
4855 tgl 2622 71816 : curname = origname;
2623 71816 : for (i = 1;; i++)
2624 28 : {
2625 : ListCell *lc2;
2626 : char nbuf[32];
4855 tgl 2627 ECB : int nlen;
2628 :
4855 tgl 2629 GIC 112995 : foreach(lc2, result)
4855 tgl 2630 ECB : {
4855 tgl 2631 GIC 41179 : if (strcmp(curname, (char *) lfirst(lc2)) == 0)
2632 28 : break;
4855 tgl 2633 ECB : }
4855 tgl 2634 CBC 71844 : if (lc2 == NULL)
4855 tgl 2635 GIC 71816 : break; /* found nonconflicting name */
4855 tgl 2636 ECB :
4855 tgl 2637 GIC 28 : sprintf(nbuf, "%d", i);
4855 tgl 2638 ECB :
2639 : /* Ensure generated names are shorter than NAMEDATALEN */
4855 tgl 2640 GIC 28 : nlen = pg_mbcliplen(origname, strlen(origname),
2641 28 : NAMEDATALEN - 1 - strlen(nbuf));
2642 28 : memcpy(buf, origname, nlen);
2643 28 : strcpy(buf + nlen, nbuf);
2644 28 : curname = buf;
4855 tgl 2645 ECB : }
2646 :
2647 : /* And attach to the result list */
4855 tgl 2648 GBC 71816 : result = lappend(result, pstrdup(curname));
2649 : }
4855 tgl 2650 CBC 45374 : return result;
2651 : }
2652 :
2653 : /*
2654 : * ExecReindex
2655 : *
2656 : * Primary entry point for manual REINDEX commands. This is mainly a
2657 : * preparation wrapper for the real operations that will happen in
2658 : * each subroutine of REINDEX.
2659 : */
2660 : void
811 michael 2661 437 : ExecReindex(ParseState *pstate, ReindexStmt *stmt, bool isTopLevel)
2662 : {
2663 437 : ReindexParams params = {0};
2664 : ListCell *lc;
857 michael 2665 GIC 437 : bool concurrently = false;
857 michael 2666 CBC 437 : bool verbose = false;
794 michael 2667 GIC 437 : char *tablespacename = NULL;
857 michael 2668 ECB :
2669 : /* Parse option list */
857 michael 2670 GIC 760 : foreach(lc, stmt->params)
2671 : {
2672 323 : DefElem *opt = (DefElem *) lfirst(lc);
2673 :
2674 323 : if (strcmp(opt->defname, "verbose") == 0)
857 michael 2675 CBC 7 : verbose = defGetBoolean(opt);
2676 316 : else if (strcmp(opt->defname, "concurrently") == 0)
2677 252 : concurrently = defGetBoolean(opt);
794 2678 64 : else if (strcmp(opt->defname, "tablespace") == 0)
794 michael 2679 GIC 64 : tablespacename = defGetString(opt);
857 michael 2680 ECB : else
857 michael 2681 UIC 0 : ereport(ERROR,
2682 : (errcode(ERRCODE_SYNTAX_ERROR),
857 michael 2683 ECB : errmsg("unrecognized REINDEX option \"%s\"",
2684 : opt->defname),
2685 : parser_errposition(pstate, opt->location)));
2686 : }
2687 :
811 michael 2688 GIC 437 : if (concurrently)
2689 252 : PreventInTransactionBlock(isTopLevel,
811 michael 2690 ECB : "REINDEX CONCURRENTLY");
2691 :
811 michael 2692 CBC 428 : params.options =
857 2693 856 : (verbose ? REINDEXOPT_VERBOSE : 0) |
857 michael 2694 GIC 428 : (concurrently ? REINDEXOPT_CONCURRENTLY : 0);
857 michael 2695 ECB :
794 2696 : /*
2697 : * Assign the tablespace OID to move indexes to, with InvalidOid to do
2698 : * nothing.
2699 : */
794 michael 2700 GIC 428 : if (tablespacename != NULL)
794 michael 2701 ECB : {
794 michael 2702 CBC 64 : params.tablespaceOid = get_tablespace_oid(tablespacename, false);
794 michael 2703 ECB :
2704 : /* Check permissions except when moving to database's default */
794 michael 2705 CBC 64 : if (OidIsValid(params.tablespaceOid) &&
794 michael 2706 GIC 64 : params.tablespaceOid != MyDatabaseTableSpace)
2707 : {
2708 : AclResult aclresult;
794 michael 2709 ECB :
147 peter 2710 GNC 64 : aclresult = object_aclcheck(TableSpaceRelationId, params.tablespaceOid,
794 michael 2711 ECB : GetUserId(), ACL_CREATE);
794 michael 2712 GIC 64 : if (aclresult != ACLCHECK_OK)
2713 6 : aclcheck_error(aclresult, OBJECT_TABLESPACE,
2714 6 : get_tablespace_name(params.tablespaceOid));
2715 : }
2716 : }
2717 : else
2718 364 : params.tablespaceOid = InvalidOid;
2719 :
811 2720 422 : switch (stmt->kind)
2721 : {
811 michael 2722 CBC 154 : case REINDEX_OBJECT_INDEX:
811 michael 2723 GIC 154 : ReindexIndex(stmt->relation, ¶ms, isTopLevel);
811 michael 2724 CBC 101 : break;
811 michael 2725 GIC 204 : case REINDEX_OBJECT_TABLE:
811 michael 2726 CBC 204 : ReindexTable(stmt->relation, ¶ms, isTopLevel);
2727 143 : break;
2728 64 : case REINDEX_OBJECT_SCHEMA:
2729 : case REINDEX_OBJECT_SYSTEM:
2730 : case REINDEX_OBJECT_DATABASE:
811 michael 2731 ECB :
2732 : /*
2733 : * This cannot run inside a user transaction block; if we were
2734 : * inside a transaction, then its commit- and
2735 : * start-transaction-command calls would not have the intended
2736 : * effect!
2737 : */
811 michael 2738 CBC 64 : PreventInTransactionBlock(isTopLevel,
2739 91 : (stmt->kind == REINDEX_OBJECT_SCHEMA) ? "REINDEX SCHEMA" :
2740 27 : (stmt->kind == REINDEX_OBJECT_SYSTEM) ? "REINDEX SYSTEM" :
2741 : "REINDEX DATABASE");
811 michael 2742 GBC 61 : ReindexMultipleTables(stmt->name, stmt->kind, ¶ms);
811 michael 2743 GIC 36 : break;
811 michael 2744 UIC 0 : default:
2745 0 : elog(ERROR, "unrecognized object type: %d",
2746 : (int) stmt->kind);
2747 : break;
2748 : }
857 michael 2749 CBC 280 : }
857 michael 2750 ECB :
2751 : /*
2752 : * ReindexIndex
6500 tgl 2753 : * Recreate a specific index.
8451 inoue 2754 : */
811 michael 2755 : static void
811 michael 2756 GIC 154 : ReindexIndex(RangeVar *indexRelation, ReindexParams *params, bool isTopLevel)
2757 : {
2758 : struct ReindexIndexCallbackState state;
2759 : Oid indOid;
2760 : char persistence;
943 michael 2761 ECB : char relkind;
2762 :
2932 alvherre 2763 : /*
2764 : * Find and lock index, and check permissions on table; use callback to
2765 : * obtain lock on table first, to avoid deadlock hazard. The lock level
2766 : * used here must match the index lock obtained in reindex_index().
1173 michael 2767 : *
2768 : * If it's a temporary index, we will perform a non-concurrent reindex,
2769 : * even if CONCURRENTLY was requested. In that case, reindex_index() will
2770 : * upgrade the lock, but that's OK, because other sessions can't hold
2771 : * locks on our temporary table.
2772 : */
811 michael 2773 CBC 154 : state.params = *params;
1432 peter 2774 154 : state.locked_table_oid = InvalidOid;
1472 2775 154 : indOid = RangeVarGetRelidExtended(indexRelation,
811 michael 2776 GIC 154 : (params->options & REINDEXOPT_CONCURRENTLY) != 0 ?
2777 : ShareUpdateExclusiveLock : AccessExclusiveLock,
2778 : 0,
4148 rhaas 2779 ECB : RangeVarCallbackForReindexIndex,
2780 : &state);
2781 :
2782 : /*
943 michael 2783 : * Obtain the current persistence and kind of the existing index. We
2784 : * already hold a lock on the index.
2932 alvherre 2785 : */
943 michael 2786 CBC 130 : persistence = get_rel_persistence(indOid);
2787 130 : relkind = get_rel_relkind(indOid);
1906 alvherre 2788 ECB :
943 michael 2789 CBC 130 : if (relkind == RELKIND_PARTITIONED_INDEX)
811 michael 2790 GIC 12 : ReindexPartitions(indOid, params, isTopLevel);
2791 118 : else if ((params->options & REINDEXOPT_CONCURRENTLY) != 0 &&
2792 : persistence != RELPERSISTENCE_TEMP)
2793 69 : ReindexRelationConcurrently(indOid, params);
2794 : else
2795 : {
2796 49 : ReindexParams newparams = *params;
2797 :
2798 49 : newparams.options |= REINDEXOPT_REPORT_PROGRESS;
811 michael 2799 CBC 49 : reindex_index(indOid, false, persistence, &newparams);
811 michael 2800 ECB : }
4148 rhaas 2801 CBC 101 : }
2802 :
4148 rhaas 2803 ECB : /*
2804 : * Check permissions on table before acquiring relation lock; also lock
4148 rhaas 2805 EUB : * the heap before the RangeVarGetRelidExtended takes the index lock, to avoid
2806 : * deadlocks.
2807 : */
2808 : static void
4148 rhaas 2809 GIC 157 : RangeVarCallbackForReindexIndex(const RangeVar *relation,
4148 rhaas 2810 ECB : Oid relId, Oid oldRelId, void *arg)
2811 : {
2812 : char relkind;
1432 peter 2813 GIC 157 : struct ReindexIndexCallbackState *state = arg;
2814 : LOCKMODE table_lockmode;
2815 : Oid table_oid;
2816 :
2817 : /*
1432 peter 2818 ECB : * Lock level here should match table lock in reindex_index() for
2819 : * non-concurrent case and table locks used by index_concurrently_*() for
2820 : * concurrent case.
2821 : */
811 michael 2822 GIC 314 : table_lockmode = (state->params.options & REINDEXOPT_CONCURRENTLY) != 0 ?
947 2823 157 : ShareUpdateExclusiveLock : ShareLock;
2824 :
2825 : /*
2826 : * If we previously locked some other index's heap, and the name we're
2827 : * looking up no longer refers to that relation, release the now-useless
2828 : * lock.
2829 : */
4148 rhaas 2830 157 : if (relId != oldRelId && OidIsValid(oldRelId))
2831 : {
1432 peter 2832 3 : UnlockRelationOid(state->locked_table_oid, table_lockmode);
2833 3 : state->locked_table_oid = InvalidOid;
2834 : }
4148 rhaas 2835 ECB :
2836 : /* If the relation does not exist, there's nothing more to do. */
4148 rhaas 2837 CBC 157 : if (!OidIsValid(relId))
2838 6 : return;
2839 :
2840 : /*
2841 : * If the relation does exist, check whether it's an index. But note that
2842 : * the relation might have been dropped between the time we did the name
2843 : * lookup and now. In that case, there's nothing to do.
2844 : */
4148 rhaas 2845 GIC 151 : relkind = get_rel_relkind(relId);
2846 151 : if (!relkind)
4148 rhaas 2847 UIC 0 : return;
1906 alvherre 2848 CBC 151 : if (relkind != RELKIND_INDEX &&
1906 alvherre 2849 ECB : relkind != RELKIND_PARTITIONED_INDEX)
7203 tgl 2850 GIC 12 : ereport(ERROR,
7203 tgl 2851 ECB : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
4148 rhaas 2852 : errmsg("\"%s\" is not an index", relation->relname)));
7684 tgl 2853 :
2854 : /* Check permissions */
117 jdavis 2855 GNC 139 : table_oid = IndexGetRelation(relId, true);
86 2856 278 : if (OidIsValid(table_oid) &&
2857 139 : pg_class_aclcheck(table_oid, GetUserId(), ACL_MAINTAIN) != ACLCHECK_OK &&
2858 6 : !has_partition_ancestor_privs(table_oid, GetUserId(), ACL_MAINTAIN))
117 2859 6 : aclcheck_error(ACLCHECK_NOT_OWNER, OBJECT_INDEX,
2860 6 : relation->relname);
2861 :
4148 rhaas 2862 ECB : /* Lock heap before index to avoid deadlock. */
4148 rhaas 2863 GIC 133 : if (relId != oldRelId)
4148 rhaas 2864 ECB : {
2865 : /*
2866 : * If the OID isn't valid, it means the index was concurrently
2867 : * dropped, which is not a problem for us; just return normally.
2868 : */
1432 peter 2869 GIC 133 : if (OidIsValid(table_oid))
2870 : {
2871 133 : LockRelationOid(table_oid, table_lockmode);
2872 133 : state->locked_table_oid = table_oid;
1432 peter 2873 ECB : }
2874 : }
2875 : }
2876 :
8451 inoue 2877 : /*
2878 : * ReindexTable
2879 : * Recreate all indexes of a table (and of its toast table, if any)
2880 : */
2881 : static Oid
811 michael 2882 GIC 204 : ReindexTable(RangeVar *relation, ReindexParams *params, bool isTopLevel)
2883 : {
2884 : Oid heapOid;
2885 : bool result;
8451 inoue 2886 ECB :
1173 michael 2887 : /*
2888 : * The lock level used here should match reindex_relation().
2889 : *
2890 : * If it's a temporary table, we will perform a non-concurrent reindex,
2891 : * even if CONCURRENTLY was requested. In that case, reindex_relation()
2892 : * will upgrade the lock, but that's OK, because other sessions can't hold
2893 : * locks on our temporary table.
2894 : */
1472 peter 2895 GIC 204 : heapOid = RangeVarGetRelidExtended(relation,
811 michael 2896 CBC 204 : (params->options & REINDEXOPT_CONCURRENTLY) != 0 ?
947 michael 2897 ECB : ShareUpdateExclusiveLock : ShareLock,
2898 : 0,
2899 : RangeVarCallbackMaintainsTable, NULL);
2900 :
943 michael 2901 CBC 181 : if (get_rel_relkind(heapOid) == RELKIND_PARTITIONED_TABLE)
811 2902 17 : ReindexPartitions(heapOid, params, isTopLevel);
811 michael 2903 GIC 275 : else if ((params->options & REINDEXOPT_CONCURRENTLY) != 0 &&
943 2904 111 : get_rel_persistence(heapOid) != RELPERSISTENCE_TEMP)
2905 : {
811 2906 105 : result = ReindexRelationConcurrently(heapOid, params);
2907 :
1404 drowley 2908 86 : if (!result)
1404 drowley 2909 CBC 6 : ereport(NOTICE,
1404 drowley 2910 ECB : (errmsg("table \"%s\" has no indexes that can be reindexed concurrently",
1404 drowley 2911 EUB : relation->relname)));
1404 drowley 2912 ECB : }
2913 : else
2914 : {
811 michael 2915 GIC 59 : ReindexParams newparams = *params;
2916 :
2917 59 : newparams.options |= REINDEXOPT_REPORT_PROGRESS;
1472 peter 2918 59 : result = reindex_relation(heapOid,
1472 peter 2919 ECB : REINDEX_REL_PROCESS_TOAST |
2920 : REINDEX_REL_CHECK_CONSTRAINTS,
811 michael 2921 : &newparams);
1404 drowley 2922 CBC 43 : if (!result)
2923 3 : ereport(NOTICE,
1404 drowley 2924 ECB : (errmsg("table \"%s\" has no indexes to reindex",
2925 : relation->relname)));
2926 : }
3753 rhaas 2927 :
3753 rhaas 2928 GIC 143 : return heapOid;
2929 : }
2930 :
2931 : /*
2932 : * ReindexMultipleTables
2954 tgl 2933 ECB : * Recreate indexes of tables selected by objectName/objectKind.
2934 : *
7137 2935 : * To reduce the probability of deadlocks, each table is reindexed in a
2936 : * separate transaction, so we can release the lock on it right away.
2937 : * That means this must not be called within a user transaction block!
2938 : */
2939 : static void
2886 fujii 2940 GIC 61 : ReindexMultipleTables(const char *objectName, ReindexObjectType objectKind,
2941 : ReindexParams *params)
2942 : {
2943 : Oid objectOid;
2944 : Relation relationRelation;
2945 : TableScanDesc scan;
2954 tgl 2946 ECB : ScanKeyData scan_keys[1];
2947 : HeapTuple tuple;
2948 : MemoryContext private_context;
2949 : MemoryContext old;
6797 bruce 2950 GIC 61 : List *relids = NIL;
2951 : int num_keys;
1472 peter 2952 61 : bool concurrent_warning = false;
794 michael 2953 61 : bool tablespace_warning = false;
2954 :
3043 simon 2955 61 : Assert(objectKind == REINDEX_OBJECT_SCHEMA ||
2956 : objectKind == REINDEX_OBJECT_SYSTEM ||
2957 : objectKind == REINDEX_OBJECT_DATABASE);
8451 inoue 2958 ECB :
2959 : /*
2960 : * This matches the options enforced by the grammar, where the object name
2961 : * is optional for DATABASE and SYSTEM.
2962 : */
163 peter 2963 GNC 61 : Assert(objectName || objectKind != REINDEX_OBJECT_SCHEMA);
2964 :
947 michael 2965 CBC 61 : if (objectKind == REINDEX_OBJECT_SYSTEM &&
811 michael 2966 GIC 12 : (params->options & REINDEXOPT_CONCURRENTLY) != 0)
1472 peter 2967 10 : ereport(ERROR,
2968 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2969 : errmsg("cannot reindex system catalogs concurrently")));
1472 peter 2970 ECB :
3043 simon 2971 : /*
2954 tgl 2972 : * Get OID of object to reindex, being the database currently being used
2973 : * by session for a database or for system catalogs, or the schema defined
2974 : * by caller. At the same time do permission checks that need different
2975 : * processing depending on the object type.
2976 : */
3043 simon 2977 CBC 51 : if (objectKind == REINDEX_OBJECT_SCHEMA)
3043 simon 2978 ECB : {
3043 simon 2979 GIC 34 : objectOid = get_namespace_oid(objectName, false);
2980 :
117 jdavis 2981 GNC 31 : if (!object_ownercheck(NamespaceRelationId, objectOid, GetUserId()) &&
2982 12 : !has_privs_of_role(GetUserId(), ROLE_PG_MAINTAIN))
1954 peter_e 2983 GIC 9 : aclcheck_error(ACLCHECK_NOT_OWNER, OBJECT_SCHEMA,
2984 : objectName);
3043 simon 2985 ECB : }
2986 : else
2987 : {
3043 simon 2988 CBC 17 : objectOid = MyDatabaseId;
2989 :
264 michael 2990 GNC 17 : if (objectName && strcmp(objectName, get_database_name(objectOid)) != 0)
3043 simon 2991 GIC 3 : ereport(ERROR,
3043 simon 2992 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2993 : errmsg("can only reindex the currently open database")));
117 jdavis 2994 GNC 14 : if (!object_ownercheck(DatabaseRelationId, objectOid, GetUserId()) &&
117 jdavis 2995 UNC 0 : !has_privs_of_role(GetUserId(), ROLE_PG_MAINTAIN))
1954 peter_e 2996 UIC 0 : aclcheck_error(ACLCHECK_NOT_OWNER, OBJECT_DATABASE,
264 michael 2997 UNC 0 : get_database_name(objectOid));
2998 : }
8451 inoue 2999 ECB :
3000 : /*
3001 : * Create a memory context that will survive forced transaction commits we
3002 : * do below. Since it is a child of PortalContext, it will go away
3003 : * eventually even if we suffer an error; there's no need for special
3004 : * abort cleanup logic.
3005 : */
7282 tgl 3006 GIC 36 : private_context = AllocSetContextCreate(PortalContext,
3007 : "ReindexMultipleTables",
3008 : ALLOCSET_SMALL_SIZES);
3009 :
3010 : /*
2954 tgl 3011 ECB : * Define the search keys to find the objects to reindex. For a schema, we
3012 : * select target relations using relnamespace, something not necessary for
3013 : * a database-wide operation.
3014 : */
3043 simon 3015 GIC 36 : if (objectKind == REINDEX_OBJECT_SCHEMA)
3016 : {
3041 3017 22 : num_keys = 1;
3043 3018 22 : ScanKeyInit(&scan_keys[0],
3019 : Anum_pg_class_relnamespace,
3020 : BTEqualStrategyNumber, F_OIDEQ,
3043 simon 3021 ECB : ObjectIdGetDatum(objectOid));
3022 : }
3023 : else
3043 simon 3024 CBC 14 : num_keys = 0;
3025 :
7810 tgl 3026 ECB : /*
3027 : * Scan pg_class to build a list of the relations we need to reindex.
3028 : *
3029 : * We only consider plain relations and materialized views here (toast
3030 : * rels will be processed indirectly by reindex_relation).
3031 : */
1539 andres 3032 GIC 36 : relationRelation = table_open(RelationRelationId, AccessShareLock);
1490 3033 36 : scan = table_beginscan_catalog(relationRelation, num_keys, scan_keys);
7629 tgl 3034 CBC 7047 : while ((tuple = heap_getnext(scan, ForwardScanDirection)) != NULL)
3035 : {
7137 3036 7011 : Form_pg_class classtuple = (Form_pg_class) GETSTRUCT(tuple);
1601 andres 3037 7011 : Oid relid = classtuple->oid;
7137 tgl 3038 ECB :
3039 : /*
3040 : * Only regular tables and matviews can have indexes, so ignore any
3041 : * other kind of relation.
3042 : *
3043 : * Partitioned tables/indexes are skipped but matching leaf partitions
3044 : * are processed.
3045 : */
3689 kgrittn 3046 GIC 7011 : if (classtuple->relkind != RELKIND_RELATION &&
3047 5740 : classtuple->relkind != RELKIND_MATVIEW)
7137 tgl 3048 CBC 5731 : continue;
3049 :
5690 alvherre 3050 ECB : /* Skip temp tables of other backends; we can't reindex them at all */
4500 rhaas 3051 GIC 1280 : if (classtuple->relpersistence == RELPERSISTENCE_TEMP &&
5122 tgl 3052 CBC 18 : !isTempNamespace(classtuple->relnamespace))
5690 alvherre 3053 LBC 0 : continue;
5690 alvherre 3054 ECB :
3055 : /*
3056 : * Check user/system classification. SYSTEM processes all the
3057 : * catalogs, and DATABASE processes everything that's not a catalog.
3058 : */
2954 tgl 3059 GIC 1280 : if (objectKind == REINDEX_OBJECT_SYSTEM &&
264 michael 3060 GNC 138 : !IsCatalogRelationOid(relid))
3061 10 : continue;
3062 2090 : else if (objectKind == REINDEX_OBJECT_DATABASE &&
3063 820 : IsCatalogRelationOid(relid))
3043 simon 3064 GIC 768 : continue;
7137 tgl 3065 ECB :
3066 : /*
3067 : * The table can be reindexed if the user has been granted MAINTAIN on
3068 : * the table or one of its partition ancestors or the user is a
3069 : * superuser, the table owner, or the database/schema owner (but in the
3070 : * latter case, only if it's not a shared relation). pg_class_aclcheck
3071 : * includes the superuser case, and depending on objectKind we already
3072 : * know that the user has permission to run REINDEX on this database or
3073 : * schema per the permission checks at the beginning of this routine.
1704 michael 3074 EUB : */
1704 michael 3075 GBC 568 : if (classtuple->relisshared &&
86 jdavis 3076 GNC 66 : pg_class_aclcheck(relid, GetUserId(), ACL_MAINTAIN) != ACLCHECK_OK &&
86 jdavis 3077 UNC 0 : !has_partition_ancestor_privs(relid, GetUserId(), ACL_MAINTAIN))
1704 michael 3078 UIC 0 : continue;
3079 :
3080 : /*
3081 : * Skip system tables, since index_create() would reject indexing them
3082 : * concurrently (and it would likely fail if we tried).
3083 : */
811 michael 3084 GIC 737 : if ((params->options & REINDEXOPT_CONCURRENTLY) != 0 &&
1432 tgl 3085 CBC 235 : IsCatalogRelationOid(relid))
3086 : {
1472 peter 3087 GIC 192 : if (!concurrent_warning)
3088 3 : ereport(WARNING,
3089 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3090 : errmsg("cannot reindex system catalogs concurrently, skipping all")));
3091 192 : concurrent_warning = true;
3092 192 : continue;
3093 : }
1472 peter 3094 ECB :
3095 : /*
794 michael 3096 : * If a new tablespace is set, check if this relation has to be
3097 : * skipped.
3098 : */
794 michael 3099 GIC 310 : if (OidIsValid(params->tablespaceOid))
3100 : {
794 michael 3101 UIC 0 : bool skip_rel = false;
3102 :
794 michael 3103 ECB : /*
3104 : * Mapped relations cannot be moved to different tablespaces (in
3105 : * particular this eliminates all shared catalogs.).
3106 : */
794 michael 3107 UIC 0 : if (RELKIND_HAS_STORAGE(classtuple->relkind) &&
277 rhaas 3108 UNC 0 : !RelFileNumberIsValid(classtuple->relfilenode))
794 michael 3109 UIC 0 : skip_rel = true;
3110 :
794 michael 3111 ECB : /*
3112 : * A system relation is always skipped, even with
3113 : * allow_system_table_mods enabled.
3114 : */
794 michael 3115 LBC 0 : if (IsSystemClass(relid, classtuple))
3116 0 : skip_rel = true;
3117 :
794 michael 3118 UIC 0 : if (skip_rel)
3119 : {
3120 0 : if (!tablespace_warning)
3121 0 : ereport(WARNING,
3122 : (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3123 : errmsg("cannot move system relations, skipping all")));
3124 0 : tablespace_warning = true;
794 michael 3125 LBC 0 : continue;
794 michael 3126 ECB : }
3127 : }
3128 :
3129 : /* Save the list of relation OIDs in private context */
2954 tgl 3130 CBC 310 : old = MemoryContextSwitchTo(private_context);
2954 tgl 3131 ECB :
3043 simon 3132 EUB : /*
3133 : * We always want to reindex pg_class first if it's selected to be
3134 : * reindexed. This ensures that if there is any corruption in
3135 : * pg_class' indexes, they will be fixed before we process any other
3136 : * tables. This is critical because reindexing itself will try to
3137 : * update pg_class.
3043 simon 3138 ECB : */
2954 tgl 3139 CBC 310 : if (relid == RelationRelationId)
3140 3 : relids = lcons_oid(relid, relids);
2954 tgl 3141 ECB : else
2954 tgl 3142 CBC 307 : relids = lappend_oid(relids, relid);
7137 tgl 3143 ECB :
7137 tgl 3144 GIC 310 : MemoryContextSwitchTo(old);
3145 : }
1490 andres 3146 36 : table_endscan(scan);
1539 3147 36 : table_close(relationRelation, AccessShareLock);
3148 :
3149 : /*
3150 : * Process each relation listed in a separate transaction. Note that this
3151 : * commits and then starts a new transaction immediately.
3152 : */
811 michael 3153 36 : ReindexMultipleInternal(relids, params);
943 michael 3154 ECB :
943 michael 3155 CBC 36 : MemoryContextDelete(private_context);
943 michael 3156 GBC 36 : }
943 michael 3157 EUB :
3158 : /*
3159 : * Error callback specific to ReindexPartitions().
3160 : */
3161 : static void
943 michael 3162 GIC 6 : reindex_error_callback(void *arg)
943 michael 3163 ECB : {
943 michael 3164 CBC 6 : ReindexErrorInfo *errinfo = (ReindexErrorInfo *) arg;
3165 :
492 peter 3166 6 : Assert(RELKIND_HAS_PARTITIONS(errinfo->relkind));
943 michael 3167 ECB :
943 michael 3168 GIC 6 : if (errinfo->relkind == RELKIND_PARTITIONED_TABLE)
3169 3 : errcontext("while reindexing partitioned table \"%s.%s\"",
943 michael 3170 ECB : errinfo->relnamespace, errinfo->relname);
943 michael 3171 CBC 3 : else if (errinfo->relkind == RELKIND_PARTITIONED_INDEX)
943 michael 3172 GIC 3 : errcontext("while reindexing partitioned index \"%s.%s\"",
3173 : errinfo->relnamespace, errinfo->relname);
3174 6 : }
3175 :
3176 : /*
3177 : * ReindexPartitions
943 michael 3178 ECB : *
3179 : * Reindex a set of partitions, per the partitioned index or table given
943 michael 3180 EUB : * by the caller.
3181 : */
3182 : static void
811 michael 3183 GIC 29 : ReindexPartitions(Oid relid, ReindexParams *params, bool isTopLevel)
3184 : {
943 3185 29 : List *partitions = NIL;
943 michael 3186 GBC 29 : char relkind = get_rel_relkind(relid);
3187 29 : char *relname = get_rel_name(relid);
3188 29 : char *relnamespace = get_namespace_name(get_rel_namespace(relid));
3189 : MemoryContext reindex_context;
3190 : List *inhoids;
3191 : ListCell *lc;
3192 : ErrorContextCallback errcallback;
3193 : ReindexErrorInfo errinfo;
943 michael 3194 EUB :
492 peter 3195 GBC 29 : Assert(RELKIND_HAS_PARTITIONS(relkind));
3196 :
943 michael 3197 EUB : /*
3198 : * Check if this runs in a transaction block, with an error callback to
3199 : * provide more context under which a problem happens.
3200 : */
943 michael 3201 GIC 29 : errinfo.relname = pstrdup(relname);
3202 29 : errinfo.relnamespace = pstrdup(relnamespace);
943 michael 3203 GBC 29 : errinfo.relkind = relkind;
3204 29 : errcallback.callback = reindex_error_callback;
943 michael 3205 GIC 29 : errcallback.arg = (void *) &errinfo;
3206 29 : errcallback.previous = error_context_stack;
3207 29 : error_context_stack = &errcallback;
3208 :
943 michael 3209 CBC 29 : PreventInTransactionBlock(isTopLevel,
3210 : relkind == RELKIND_PARTITIONED_TABLE ?
3211 : "REINDEX TABLE" : "REINDEX INDEX");
3212 :
3213 : /* Pop the error context stack */
943 michael 3214 GIC 23 : error_context_stack = errcallback.previous;
3215 :
3216 : /*
3217 : * Create special memory context for cross-transaction storage.
943 michael 3218 ECB : *
3219 : * Since it is a child of PortalContext, it will go away eventually even
3220 : * if we suffer an error so there is no need for special abort cleanup
3221 : * logic.
3222 : */
943 michael 3223 CBC 23 : reindex_context = AllocSetContextCreate(PortalContext, "Reindex",
3224 : ALLOCSET_DEFAULT_SIZES);
943 michael 3225 ECB :
3226 : /* ShareLock is enough to prevent schema modifications */
943 michael 3227 GIC 23 : inhoids = find_all_inheritors(relid, ShareLock, NULL);
3228 :
3229 : /*
3230 : * The list of relations to reindex are the physical partitions of the
3231 : * tree so discard any partitioned table or index.
943 michael 3232 ECB : */
943 michael 3233 GIC 116 : foreach(lc, inhoids)
943 michael 3234 ECB : {
943 michael 3235 CBC 93 : Oid partoid = lfirst_oid(lc);
943 michael 3236 GIC 93 : char partkind = get_rel_relkind(partoid);
3237 : MemoryContext old_context;
3238 :
3239 : /*
3240 : * This discards partitioned tables, partitioned indexes and foreign
943 michael 3241 ECB : * tables.
3242 : */
943 michael 3243 CBC 93 : if (!RELKIND_HAS_STORAGE(partkind))
943 michael 3244 GIC 55 : continue;
943 michael 3245 ECB :
943 michael 3246 GIC 38 : Assert(partkind == RELKIND_INDEX ||
943 michael 3247 ECB : partkind == RELKIND_RELATION);
3248 :
3249 : /* Save partition OID */
943 michael 3250 CBC 38 : old_context = MemoryContextSwitchTo(reindex_context);
3251 38 : partitions = lappend_oid(partitions, partoid);
943 michael 3252 GIC 38 : MemoryContextSwitchTo(old_context);
943 michael 3253 ECB : }
3254 :
3255 : /*
3256 : * Process each partition listed in a separate transaction. Note that
3257 : * this commits and then starts a new transaction immediately.
3258 : */
811 michael 3259 GIC 23 : ReindexMultipleInternal(partitions, params);
3260 :
3261 : /*
943 michael 3262 ECB : * Clean up working storage --- note we must do this after
3263 : * StartTransactionCommand, else we might be trying to delete the active
3264 : * context!
3265 : */
943 michael 3266 CBC 23 : MemoryContextDelete(reindex_context);
3267 23 : }
3268 :
3269 : /*
3270 : * ReindexMultipleInternal
3271 : *
3272 : * Reindex a list of relations, each one being processed in its own
3273 : * transaction. This commits the existing transaction immediately,
943 michael 3274 ECB : * and starts a new transaction when finished.
3275 : */
3276 : static void
811 michael 3277 GIC 59 : ReindexMultipleInternal(List *relids, ReindexParams *params)
3278 : {
3279 : ListCell *l;
943 michael 3280 ECB :
5445 alvherre 3281 CBC 59 : PopActiveSnapshot();
7270 tgl 3282 59 : CommitTransactionCommand();
943 michael 3283 ECB :
6892 neilc 3284 CBC 407 : foreach(l, relids)
8451 inoue 3285 ECB : {
6797 bruce 3286 CBC 348 : Oid relid = lfirst_oid(l);
3287 : char relkind;
943 michael 3288 ECB : char relpersistence;
3289 :
7270 tgl 3290 GIC 348 : StartTransactionCommand();
3291 :
3292 : /* functions in indexes may want a snapshot set */
5445 alvherre 3293 CBC 348 : PushActiveSnapshot(GetTransactionSnapshot());
3294 :
3295 : /* check if the relation still exists */
949 michael 3296 GIC 348 : if (!SearchSysCacheExists1(RELOID, ObjectIdGetDatum(relid)))
3297 : {
3298 2 : PopActiveSnapshot();
3299 2 : CommitTransactionCommand();
3300 2 : continue;
3301 : }
949 michael 3302 ECB :
3303 : /*
3304 : * Check permissions except when moving to database's default if a new
3305 : * tablespace is chosen. Note that this check also happens in
794 3306 : * ExecReindex(), but we do an extra check here as this runs across
3307 : * multiple transactions.
3308 : */
794 michael 3309 GIC 346 : if (OidIsValid(params->tablespaceOid) &&
3310 6 : params->tablespaceOid != MyDatabaseTableSpace)
3311 : {
794 michael 3312 ECB : AclResult aclresult;
3313 :
147 peter 3314 GNC 6 : aclresult = object_aclcheck(TableSpaceRelationId, params->tablespaceOid,
794 michael 3315 ECB : GetUserId(), ACL_CREATE);
794 michael 3316 GIC 6 : if (aclresult != ACLCHECK_OK)
794 michael 3317 UIC 0 : aclcheck_error(aclresult, OBJECT_TABLESPACE,
3318 0 : get_tablespace_name(params->tablespaceOid));
3319 : }
3320 :
943 michael 3321 GIC 346 : relkind = get_rel_relkind(relid);
943 michael 3322 CBC 346 : relpersistence = get_rel_persistence(relid);
943 michael 3323 ECB :
3324 : /*
3325 : * Partitioned tables and indexes can never be processed directly, and
3326 : * a list of their leaves should be built first.
3327 : */
492 peter 3328 GIC 346 : Assert(!RELKIND_HAS_PARTITIONS(relkind));
943 michael 3329 ECB :
811 michael 3330 CBC 346 : if ((params->options & REINDEXOPT_CONCURRENTLY) != 0 &&
943 michael 3331 ECB : relpersistence != RELPERSISTENCE_TEMP)
1472 peter 3332 GIC 46 : {
811 michael 3333 46 : ReindexParams newparams = *params;
3334 :
3335 46 : newparams.options |= REINDEXOPT_MISSING_OK;
3336 46 : (void) ReindexRelationConcurrently(relid, &newparams);
3337 : /* ReindexRelationConcurrently() does the verbose output */
1472 peter 3338 ECB : }
943 michael 3339 GIC 300 : else if (relkind == RELKIND_INDEX)
3340 : {
811 3341 6 : ReindexParams newparams = *params;
3342 :
3343 6 : newparams.options |=
3344 : REINDEXOPT_REPORT_PROGRESS | REINDEXOPT_MISSING_OK;
811 michael 3345 CBC 6 : reindex_index(relid, false, relpersistence, &newparams);
943 3346 6 : PopActiveSnapshot();
3347 : /* reindex_index() does the verbose output */
3348 : }
3349 : else
3350 : {
3351 : bool result;
811 michael 3352 GIC 294 : ReindexParams newparams = *params;
3353 :
3354 294 : newparams.options |=
3355 : REINDEXOPT_REPORT_PROGRESS | REINDEXOPT_MISSING_OK;
1472 peter 3356 CBC 294 : result = reindex_relation(relid,
3357 : REINDEX_REL_PROCESS_TOAST |
3358 : REINDEX_REL_CHECK_CONSTRAINTS,
3359 : &newparams);
1472 peter 3360 ECB :
811 michael 3361 CBC 294 : if (result && (params->options & REINDEXOPT_VERBOSE) != 0)
2886 fujii 3362 UIC 0 : ereport(INFO,
2886 fujii 3363 ECB : (errmsg("table \"%s.%s\" was reindexed",
3364 : get_namespace_name(get_rel_namespace(relid)),
3365 : get_rel_name(relid))));
3366 :
1472 peter 3367 GIC 294 : PopActiveSnapshot();
3368 : }
1472 peter 3369 ECB :
1472 peter 3370 GIC 346 : CommitTransactionCommand();
3371 : }
1472 peter 3372 ECB :
943 michael 3373 GIC 59 : StartTransactionCommand();
1472 peter 3374 59 : }
1472 peter 3375 ECB :
3376 :
3377 : /*
3378 : * ReindexRelationConcurrently - process REINDEX CONCURRENTLY for given
3379 : * relation OID
3380 : *
3381 : * 'relationOid' can either belong to an index, a table or a materialized
3382 : * view. For tables and materialized views, all its indexes will be rebuilt,
3383 : * excluding invalid indexes and any indexes used in exclusion constraints,
3384 : * but including its associated toast table indexes. For indexes, the index
3385 : * itself will be rebuilt.
3386 : *
3387 : * The locks taken on parent tables and involved indexes are kept until the
3388 : * transaction is committed, at which point a session lock is taken on each
3389 : * relation. Both of these protect against concurrent schema changes.
3390 : *
3391 : * Returns true if any indexes have been rebuilt (including toast table's
3392 : * indexes, when relevant), otherwise returns false.
1173 michael 3393 : *
3394 : * NOTE: This cannot be used on temporary relations. A concurrent build would
3395 : * cause issues with ON COMMIT actions triggered by the transactions of the
1173 michael 3396 EUB : * concurrent build. Temporary relations are not subject to concurrent
3397 : * concerns, so there's no need for the more complicated concurrent build,
3398 : * anyway, and a non-concurrent reindex is more efficient.
3399 : */
1472 peter 3400 ECB : static bool
811 michael 3401 CBC 220 : ReindexRelationConcurrently(Oid relationOid, ReindexParams *params)
3402 : {
3403 : typedef struct ReindexIndexInfo
3404 : {
3405 : Oid indexId;
3406 : Oid tableId;
817 alvherre 3407 ECB : Oid amId;
3408 : bool safe; /* for set_indexsafe_procflags */
3409 : } ReindexIndexInfo;
1472 peter 3410 GIC 220 : List *heapRelationIds = NIL;
1472 peter 3411 CBC 220 : List *indexIds = NIL;
3412 220 : List *newIndexIds = NIL;
1472 peter 3413 GIC 220 : List *relationLocks = NIL;
1472 peter 3414 CBC 220 : List *lockTags = NIL;
1472 peter 3415 ECB : ListCell *lc,
3416 : *lc2;
3417 : MemoryContext private_context;
3418 : MemoryContext oldcontext;
3419 : char relkind;
1472 peter 3420 CBC 220 : char *relationName = NULL;
1472 peter 3421 GIC 220 : char *relationNamespace = NULL;
1472 peter 3422 ECB : PGRUsage ru0;
922 michael 3423 GIC 220 : const int progress_index[] = {
922 michael 3424 ECB : PROGRESS_CREATEIDX_COMMAND,
3425 : PROGRESS_CREATEIDX_PHASE,
3426 : PROGRESS_CREATEIDX_INDEX_OID,
3427 : PROGRESS_CREATEIDX_ACCESS_METHOD_OID
3428 : };
3429 : int64 progress_vals[4];
3430 :
1472 peter 3431 : /*
3432 : * Create a memory context that will survive forced transaction commits we
3433 : * do below. Since it is a child of PortalContext, it will go away
3434 : * eventually even if we suffer an error; there's no need for special
3435 : * abort cleanup logic.
3436 : */
1472 peter 3437 GIC 220 : private_context = AllocSetContextCreate(PortalContext,
3438 : "ReindexConcurrent",
3439 : ALLOCSET_SMALL_SIZES);
1472 peter 3440 ECB :
811 michael 3441 GBC 220 : if ((params->options & REINDEXOPT_VERBOSE) != 0)
3442 : {
3443 : /* Save data needed by REINDEX VERBOSE in private context */
1472 peter 3444 GIC 2 : oldcontext = MemoryContextSwitchTo(private_context);
3445 :
1472 peter 3446 CBC 2 : relationName = get_rel_name(relationOid);
1472 peter 3447 GIC 2 : relationNamespace = get_namespace_name(get_rel_namespace(relationOid));
3448 :
1472 peter 3449 CBC 2 : pg_rusage_init(&ru0);
3450 :
1472 peter 3451 GIC 2 : MemoryContextSwitchTo(oldcontext);
1472 peter 3452 ECB : }
3453 :
1472 peter 3454 GIC 220 : relkind = get_rel_relkind(relationOid);
3455 :
3456 : /*
3457 : * Extract the list of indexes that are going to be rebuilt based on the
3458 : * relation Oid given by caller.
3459 : */
3460 220 : switch (relkind)
3461 : {
3462 142 : case RELKIND_RELATION:
3463 : case RELKIND_MATVIEW:
3464 : case RELKIND_TOASTVALUE:
3465 : {
3466 : /*
3467 : * In the case of a relation, find all its indexes including
3468 : * toast indexes.
3469 : */
3470 : Relation heapRelation;
3471 :
3472 : /* Save the list of relation OIDs in private context */
3473 142 : oldcontext = MemoryContextSwitchTo(private_context);
3474 :
3475 : /* Track this relation for session locks */
3476 142 : heapRelationIds = lappend_oid(heapRelationIds, relationOid);
3477 :
3478 142 : MemoryContextSwitchTo(oldcontext);
3479 :
1430 michael 3480 CBC 142 : if (IsCatalogRelationOid(relationOid))
1430 michael 3481 GIC 18 : ereport(ERROR,
3482 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3483 : errmsg("cannot reindex system catalogs concurrently")));
3484 :
3485 : /* Open relation to get its indexes */
811 3486 124 : if ((params->options & REINDEXOPT_MISSING_OK) != 0)
3487 : {
949 3488 37 : heapRelation = try_table_open(relationOid,
949 michael 3489 ECB : ShareUpdateExclusiveLock);
3490 : /* leave if relation does not exist */
949 michael 3491 CBC 37 : if (!heapRelation)
949 michael 3492 LBC 0 : break;
949 michael 3493 ECB : }
3494 : else
949 michael 3495 GIC 87 : heapRelation = table_open(relationOid,
3496 : ShareUpdateExclusiveLock);
3497 :
794 3498 135 : if (OidIsValid(params->tablespaceOid) &&
794 michael 3499 CBC 11 : IsSystemRelation(heapRelation))
3500 1 : ereport(ERROR,
3501 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
794 michael 3502 ECB : errmsg("cannot move system relation \"%s\"",
3503 : RelationGetRelationName(heapRelation))));
3504 :
3505 : /* Add all the valid indexes of relation to list */
1472 peter 3506 GIC 243 : foreach(lc, RelationGetIndexList(heapRelation))
3507 : {
3508 120 : Oid cellOid = lfirst_oid(lc);
3509 120 : Relation indexRelation = index_open(cellOid,
3510 : ShareUpdateExclusiveLock);
3511 :
3512 120 : if (!indexRelation->rd_index->indisvalid)
3513 3 : ereport(WARNING,
3514 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3515 : errmsg("cannot reindex invalid index \"%s.%s\" concurrently, skipping",
1472 peter 3516 ECB : get_namespace_name(get_rel_namespace(cellOid)),
3517 : get_rel_name(cellOid))));
1472 peter 3518 GIC 117 : else if (indexRelation->rd_index->indisexclusion)
3519 3 : ereport(WARNING,
1472 peter 3520 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3521 : errmsg("cannot reindex exclusion constraint index \"%s.%s\" concurrently, skipping",
3522 : get_namespace_name(get_rel_namespace(cellOid)),
3523 : get_rel_name(cellOid))));
3524 : else
3525 : {
817 alvherre 3526 : ReindexIndexInfo *idx;
3527 :
1472 peter 3528 : /* Save the list of relation OIDs in private context */
1472 peter 3529 GIC 114 : oldcontext = MemoryContextSwitchTo(private_context);
1472 peter 3530 ECB :
209 peter 3531 GNC 114 : idx = palloc_object(ReindexIndexInfo);
817 alvherre 3532 GIC 114 : idx->indexId = cellOid;
817 alvherre 3533 ECB : /* other fields set later */
3534 :
817 alvherre 3535 GIC 114 : indexIds = lappend(indexIds, idx);
3536 :
1472 peter 3537 114 : MemoryContextSwitchTo(oldcontext);
3538 : }
1472 peter 3539 ECB :
1472 peter 3540 GIC 120 : index_close(indexRelation, NoLock);
1472 peter 3541 ECB : }
3542 :
3543 : /* Also add the toast indexes */
1472 peter 3544 GIC 123 : if (OidIsValid(heapRelation->rd_rel->reltoastrelid))
3545 : {
3546 41 : Oid toastOid = heapRelation->rd_rel->reltoastrelid;
3547 41 : Relation toastRelation = table_open(toastOid,
3548 : ShareUpdateExclusiveLock);
3549 :
3550 : /* Save the list of relation OIDs in private context */
3551 41 : oldcontext = MemoryContextSwitchTo(private_context);
1472 peter 3552 ECB :
3553 : /* Track this relation for session locks */
1472 peter 3554 GIC 41 : heapRelationIds = lappend_oid(heapRelationIds, toastOid);
1472 peter 3555 ECB :
1472 peter 3556 GIC 41 : MemoryContextSwitchTo(oldcontext);
1472 peter 3557 ECB :
1472 peter 3558 GIC 82 : foreach(lc2, RelationGetIndexList(toastRelation))
1472 peter 3559 ECB : {
1472 peter 3560 CBC 41 : Oid cellOid = lfirst_oid(lc2);
1472 peter 3561 GIC 41 : Relation indexRelation = index_open(cellOid,
3562 : ShareUpdateExclusiveLock);
3563 :
3564 41 : if (!indexRelation->rd_index->indisvalid)
1472 peter 3565 LBC 0 : ereport(WARNING,
3566 : (errcode(ERRCODE_INDEX_CORRUPTED),
1430 michael 3567 ECB : errmsg("cannot reindex invalid index \"%s.%s\" concurrently, skipping",
3568 : get_namespace_name(get_rel_namespace(cellOid)),
3569 : get_rel_name(cellOid))));
1472 peter 3570 : else
1472 peter 3571 EUB : {
3572 : ReindexIndexInfo *idx;
3573 :
1472 peter 3574 ECB : /*
3575 : * Save the list of relation OIDs in private
3576 : * context
3577 : */
1472 peter 3578 CBC 41 : oldcontext = MemoryContextSwitchTo(private_context);
1472 peter 3579 ECB :
209 peter 3580 GNC 41 : idx = palloc_object(ReindexIndexInfo);
817 alvherre 3581 GIC 41 : idx->indexId = cellOid;
3582 41 : indexIds = lappend(indexIds, idx);
3583 : /* other fields set later */
3584 :
1472 peter 3585 CBC 41 : MemoryContextSwitchTo(oldcontext);
3586 : }
1472 peter 3587 ECB :
1472 peter 3588 CBC 41 : index_close(indexRelation, NoLock);
3589 : }
3590 :
3591 41 : table_close(toastRelation, NoLock);
1472 peter 3592 ECB : }
3593 :
1472 peter 3594 GIC 123 : table_close(heapRelation, NoLock);
3595 123 : break;
3596 : }
1472 peter 3597 CBC 78 : case RELKIND_INDEX:
1472 peter 3598 ECB : {
949 michael 3599 GIC 78 : Oid heapId = IndexGetRelation(relationOid,
811 3600 78 : (params->options & REINDEXOPT_MISSING_OK) != 0);
3601 : Relation heapRelation;
3602 : ReindexIndexInfo *idx;
3603 :
3604 : /* if relation is missing, leave */
949 3605 78 : if (!OidIsValid(heapId))
949 michael 3606 UIC 0 : break;
3607 :
1432 tgl 3608 CBC 78 : if (IsCatalogRelationOid(heapId))
1472 peter 3609 GIC 9 : ereport(ERROR,
1472 peter 3610 ECB : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1389 michael 3611 : errmsg("cannot reindex system catalogs concurrently")));
3612 :
3613 : /*
1125 3614 : * Don't allow reindex for an invalid index on TOAST table, as
3615 : * if rebuilt it would not be possible to drop it. Match
883 alvherre 3616 : * error message in reindex_index().
3617 : */
1125 michael 3618 GIC 69 : if (IsToastNamespace(get_rel_namespace(relationOid)) &&
1125 michael 3619 CBC 28 : !get_index_isvalid(relationOid))
1125 michael 3620 UIC 0 : ereport(ERROR,
3621 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3622 : errmsg("cannot reindex invalid index on TOAST table")));
1125 michael 3623 ECB :
3624 : /*
949 3625 : * Check if parent relation can be locked and if it exists,
3626 : * this needs to be done at this stage as the list of indexes
3627 : * to rebuild is not complete yet, and REINDEXOPT_MISSING_OK
3628 : * should not be used once all the session locks are taken.
3629 : */
811 michael 3630 CBC 69 : if ((params->options & REINDEXOPT_MISSING_OK) != 0)
3631 : {
949 michael 3632 GIC 9 : heapRelation = try_table_open(heapId,
949 michael 3633 ECB : ShareUpdateExclusiveLock);
3634 : /* leave if relation does not exist */
949 michael 3635 CBC 9 : if (!heapRelation)
949 michael 3636 UIC 0 : break;
949 michael 3637 ECB : }
3638 : else
949 michael 3639 CBC 60 : heapRelation = table_open(heapId,
949 michael 3640 ECB : ShareUpdateExclusiveLock);
3641 :
794 michael 3642 GIC 73 : if (OidIsValid(params->tablespaceOid) &&
794 michael 3643 CBC 4 : IsSystemRelation(heapRelation))
794 michael 3644 GBC 1 : ereport(ERROR,
3645 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3646 : errmsg("cannot move system relation \"%s\"",
3647 : get_rel_name(relationOid))));
3648 :
949 michael 3649 GIC 68 : table_close(heapRelation, NoLock);
3650 :
3651 : /* Save the list of relation OIDs in private context */
1472 peter 3652 68 : oldcontext = MemoryContextSwitchTo(private_context);
3653 :
3654 : /* Track the heap relation of this index for session locks */
3655 68 : heapRelationIds = list_make1_oid(heapId);
3656 :
1453 michael 3657 ECB : /*
3658 : * Save the list of relation OIDs in private context. Note
3659 : * that invalid indexes are allowed here.
3660 : */
209 peter 3661 GNC 68 : idx = palloc_object(ReindexIndexInfo);
817 alvherre 3662 GIC 68 : idx->indexId = relationOid;
3663 68 : indexIds = lappend(indexIds, idx);
817 alvherre 3664 ECB : /* other fields set later */
3665 :
1453 michael 3666 GIC 68 : MemoryContextSwitchTo(oldcontext);
1472 peter 3667 CBC 68 : break;
3668 : }
3669 :
1472 peter 3670 LBC 0 : case RELKIND_PARTITIONED_TABLE:
3671 : case RELKIND_PARTITIONED_INDEX:
3672 : default:
1472 peter 3673 ECB : /* Return error if type of relation is not supported */
1472 peter 3674 LBC 0 : ereport(ERROR,
3675 : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
1430 michael 3676 ECB : errmsg("cannot reindex this type of relation concurrently")));
3677 : break;
1472 peter 3678 : }
3679 :
3680 : /*
3681 : * Definitely no indexes, so leave. Any checks based on
3682 : * REINDEXOPT_MISSING_OK should be done only while the list of indexes to
3683 : * work on is built as the session locks taken before this transaction
949 michael 3684 : * commits will make sure that they cannot be dropped by a concurrent
949 michael 3685 EUB : * session until this operation completes.
3686 : */
1472 peter 3687 CBC 191 : if (indexIds == NIL)
1472 peter 3688 ECB : {
1472 peter 3689 GIC 13 : PopActiveSnapshot();
3690 13 : return false;
3691 : }
3692 :
3693 : /* It's not a shared catalog, so refuse to move it to shared tablespace */
794 michael 3694 178 : if (params->tablespaceOid == GLOBALTABLESPACE_OID)
3695 3 : ereport(ERROR,
3696 : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
794 michael 3697 ECB : errmsg("cannot move non-shared relation to tablespace \"%s\"",
3698 : get_tablespace_name(params->tablespaceOid))));
794 michael 3699 EUB :
1472 peter 3700 GIC 175 : Assert(heapRelationIds != NIL);
3701 :
3702 : /*-----
3703 : * Now we have all the indexes we want to process in indexIds.
3704 : *
3705 : * The phases now are:
3706 : *
3707 : * 1. create new indexes in the catalog
3708 : * 2. build new indexes
1472 peter 3709 ECB : * 3. let new indexes catch up with tuples inserted in the meantime
3710 : * 4. swap index names
3711 : * 5. mark old indexes as dead
3712 : * 6. drop old indexes
3713 : *
3714 : * We process each phase for all indexes before moving to the next phase,
1472 peter 3715 EUB : * for efficiency.
3716 : */
3717 :
1472 peter 3718 ECB : /*
3719 : * Phase 1 of REINDEX CONCURRENTLY
3720 : *
3721 : * Create a new index with the same properties as the old one, but it is
3722 : * only registered in catalogs and will be built later. Then get session
3723 : * locks on all involved tables. See analogous code in DefineIndex() for
3724 : * more detailed comments.
3725 : */
3726 :
1472 peter 3727 GIC 392 : foreach(lc, indexIds)
1472 peter 3728 ECB : {
3729 : char *concurrentName;
817 alvherre 3730 GIC 220 : ReindexIndexInfo *idx = lfirst(lc);
817 alvherre 3731 ECB : ReindexIndexInfo *newidx;
3732 : Oid newIndexId;
3733 : Relation indexRel;
1472 peter 3734 : Relation heapRel;
3735 : Oid save_userid;
3736 : int save_sec_context;
3737 : int save_nestlevel;
3738 : Relation newIndexRel;
3739 : LockRelId *lockrelid;
794 michael 3740 : Oid tablespaceid;
1472 peter 3741 :
817 alvherre 3742 CBC 220 : indexRel = index_open(idx->indexId, ShareUpdateExclusiveLock);
1472 peter 3743 GIC 220 : heapRel = table_open(indexRel->rd_index->indrelid,
3744 : ShareUpdateExclusiveLock);
1472 peter 3745 ECB :
335 noah 3746 : /*
3747 : * Switch to the table owner's userid, so that any index functions are
3748 : * run as that user. Also lock down security-restricted operations
335 noah 3749 EUB : * and arrange to make GUC variable changes local to this command.
3750 : */
335 noah 3751 GIC 220 : GetUserIdAndSecContext(&save_userid, &save_sec_context);
3752 220 : SetUserIdAndSecContext(heapRel->rd_rel->relowner,
335 noah 3753 EUB : save_sec_context | SECURITY_RESTRICTED_OPERATION);
335 noah 3754 GIC 220 : save_nestlevel = NewGUCNestLevel();
3755 :
3756 : /* determine safety of this index for set_indexsafe_procflags */
814 alvherre 3757 431 : idx->safe = (indexRel->rd_indexprs == NIL &&
3758 211 : indexRel->rd_indpred == NIL);
817 3759 220 : idx->tableId = RelationGetRelid(heapRel);
3760 220 : idx->amId = indexRel->rd_rel->relam;
3761 :
3762 : /* This function shouldn't be called for temporary relations. */
1173 michael 3763 220 : if (indexRel->rd_rel->relpersistence == RELPERSISTENCE_TEMP)
1173 michael 3764 UIC 0 : elog(ERROR, "cannot reindex a temporary table concurrently");
3765 :
1463 peter 3766 CBC 220 : pgstat_progress_start_command(PROGRESS_COMMAND_CREATE_INDEX,
3767 : idx->tableId);
817 alvherre 3768 ECB :
922 michael 3769 CBC 220 : progress_vals[0] = PROGRESS_CREATEIDX_COMMAND_REINDEX_CONCURRENTLY;
922 michael 3770 GIC 220 : progress_vals[1] = 0; /* initializing */
817 alvherre 3771 220 : progress_vals[2] = idx->indexId;
3772 220 : progress_vals[3] = idx->amId;
922 michael 3773 CBC 220 : pgstat_progress_update_multi_param(4, progress_index, progress_vals);
1463 peter 3774 ECB :
3775 : /* Choose a temporary relation name for the new index */
817 alvherre 3776 GIC 220 : concurrentName = ChooseRelationName(get_rel_name(idx->indexId),
3777 : NULL,
3778 : "ccnew",
1472 peter 3779 CBC 220 : get_rel_namespace(indexRel->rd_index->indrelid),
3780 : false);
3781 :
3782 : /* Choose the new tablespace, indexes of toast tables are not moved */
794 michael 3783 GIC 220 : if (OidIsValid(params->tablespaceOid) &&
3784 14 : heapRel->rd_rel->relkind != RELKIND_TOASTVALUE)
3785 10 : tablespaceid = params->tablespaceOid;
3786 : else
3787 210 : tablespaceid = indexRel->rd_rel->reltablespace;
3788 :
3789 : /* Create new index definition based on given index */
1472 peter 3790 220 : newIndexId = index_concurrently_create_copy(heapRel,
3791 : idx->indexId,
3792 : tablespaceid,
3793 : concurrentName);
3794 :
3795 : /*
3796 : * Now open the relation of the new index, a session-level lock is
3797 : * also needed on it.
3798 : */
1264 michael 3799 217 : newIndexRel = index_open(newIndexId, ShareUpdateExclusiveLock);
3800 :
3801 : /*
3802 : * Save the list of OIDs and locks in private context
3803 : */
1472 peter 3804 217 : oldcontext = MemoryContextSwitchTo(private_context);
3805 :
209 peter 3806 GNC 217 : newidx = palloc_object(ReindexIndexInfo);
817 alvherre 3807 GIC 217 : newidx->indexId = newIndexId;
814 3808 217 : newidx->safe = idx->safe;
817 alvherre 3809 CBC 217 : newidx->tableId = idx->tableId;
817 alvherre 3810 GIC 217 : newidx->amId = idx->amId;
3811 :
3812 217 : newIndexIds = lappend(newIndexIds, newidx);
3813 :
3814 : /*
3815 : * Save lockrelid to protect each relation from drop then close
3816 : * relations. The lockrelid on parent relation is not taken here to
3817 : * avoid multiple locks taken on the same relation, instead we rely on
3818 : * parentRelationIds built earlier.
3819 : */
209 peter 3820 GNC 217 : lockrelid = palloc_object(LockRelId);
1472 peter 3821 CBC 217 : *lockrelid = indexRel->rd_lockInfo.lockRelId;
3822 217 : relationLocks = lappend(relationLocks, lockrelid);
209 peter 3823 GNC 217 : lockrelid = palloc_object(LockRelId);
1472 peter 3824 GIC 217 : *lockrelid = newIndexRel->rd_lockInfo.lockRelId;
3825 217 : relationLocks = lappend(relationLocks, lockrelid);
3826 :
3827 217 : MemoryContextSwitchTo(oldcontext);
3828 :
3829 217 : index_close(indexRel, NoLock);
1472 peter 3830 CBC 217 : index_close(newIndexRel, NoLock);
335 noah 3831 ECB :
3832 : /* Roll back any GUC changes executed by index functions */
335 noah 3833 CBC 217 : AtEOXact_GUC(false, save_nestlevel);
3834 :
3835 : /* Restore userid and security context */
3836 217 : SetUserIdAndSecContext(save_userid, save_sec_context);
335 noah 3837 ECB :
1472 peter 3838 CBC 217 : table_close(heapRel, NoLock);
1472 peter 3839 ECB : }
3840 :
3841 : /*
3842 : * Save the heap lock for following visibility checks with other backends
1472 peter 3843 EUB : * might conflict with this session.
3844 : */
1472 peter 3845 CBC 385 : foreach(lc, heapRelationIds)
3846 : {
1472 peter 3847 GIC 213 : Relation heapRelation = table_open(lfirst_oid(lc), ShareUpdateExclusiveLock);
1472 peter 3848 ECB : LockRelId *lockrelid;
3849 : LOCKTAG *heaplocktag;
3850 :
3851 : /* Save the list of locks in private context */
1472 peter 3852 CBC 213 : oldcontext = MemoryContextSwitchTo(private_context);
3853 :
3854 : /* Add lockrelid of heap relation to the list of locked relations */
209 peter 3855 GNC 213 : lockrelid = palloc_object(LockRelId);
1472 peter 3856 GIC 213 : *lockrelid = heapRelation->rd_lockInfo.lockRelId;
3857 213 : relationLocks = lappend(relationLocks, lockrelid);
1472 peter 3858 ECB :
209 peter 3859 GNC 213 : heaplocktag = palloc_object(LOCKTAG);
3860 :
3861 : /* Save the LOCKTAG for this parent relation for the wait phase */
1472 peter 3862 CBC 213 : SET_LOCKTAG_RELATION(*heaplocktag, lockrelid->dbId, lockrelid->relId);
3863 213 : lockTags = lappend(lockTags, heaplocktag);
1472 peter 3864 ECB :
1472 peter 3865 GIC 213 : MemoryContextSwitchTo(oldcontext);
1472 peter 3866 ECB :
3867 : /* Close heap relation */
1472 peter 3868 GIC 213 : table_close(heapRelation, NoLock);
1472 peter 3869 ECB : }
3870 :
3871 : /* Get a session-level lock on each table. */
1472 peter 3872 GIC 819 : foreach(lc, relationLocks)
3873 : {
1418 tgl 3874 647 : LockRelId *lockrelid = (LockRelId *) lfirst(lc);
3875 :
1472 peter 3876 647 : LockRelationIdForSession(lockrelid, ShareUpdateExclusiveLock);
3877 : }
1472 peter 3878 ECB :
1472 peter 3879 GIC 172 : PopActiveSnapshot();
3880 172 : CommitTransactionCommand();
3881 172 : StartTransactionCommand();
3882 :
814 alvherre 3883 ECB : /*
3884 : * Because we don't take a snapshot in this transaction, there's no need
3885 : * to set the PROC_IN_SAFE_IC flag here.
3886 : */
3887 :
1472 peter 3888 : /*
3889 : * Phase 2 of REINDEX CONCURRENTLY
3890 : *
3891 : * Build the new indexes in a separate transaction for each index to avoid
3892 : * having open transactions for an unnecessary long time. But before
3893 : * doing that, wait until no running transactions could have the table of
3894 : * the index open with the old list of indexes. See "phase 2" in
3895 : * DefineIndex() for more details.
3896 : */
3897 :
1463 peter 3898 GIC 172 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
1463 peter 3899 ECB : PROGRESS_CREATEIDX_PHASE_WAIT_1);
1463 peter 3900 CBC 172 : WaitForLockersMultiple(lockTags, ShareLock, true);
1472 3901 172 : CommitTransactionCommand();
1472 peter 3902 ECB :
922 michael 3903 CBC 386 : foreach(lc, newIndexIds)
1472 peter 3904 ECB : {
817 alvherre 3905 GIC 217 : ReindexIndexInfo *newidx = lfirst(lc);
1472 peter 3906 ECB :
3907 : /* Start new transaction for this index's concurrent build */
1472 peter 3908 CBC 217 : StartTransactionCommand();
1472 peter 3909 ECB :
3910 : /*
3911 : * Check for user-requested abort. This is inside a transaction so as
1262 michael 3912 : * xact.c does not issue a useless WARNING, and ensures that
3913 : * session-level locks are cleaned up on abort.
3914 : */
1262 michael 3915 CBC 217 : CHECK_FOR_INTERRUPTS();
3916 :
814 alvherre 3917 ECB : /* Tell concurrent indexing to ignore us, if index qualifies */
814 alvherre 3918 GIC 217 : if (newidx->safe)
3919 205 : set_indexsafe_procflags();
3920 :
3921 : /* Set ActiveSnapshot since functions in the indexes may need it */
1472 peter 3922 217 : PushActiveSnapshot(GetTransactionSnapshot());
3923 :
922 michael 3924 ECB : /*
3925 : * Update progress for the index to build, with the correct parent
3926 : * table involved.
3927 : */
817 alvherre 3928 GIC 217 : pgstat_progress_start_command(PROGRESS_COMMAND_CREATE_INDEX, newidx->tableId);
922 michael 3929 217 : progress_vals[0] = PROGRESS_CREATEIDX_COMMAND_REINDEX_CONCURRENTLY;
3930 217 : progress_vals[1] = PROGRESS_CREATEIDX_PHASE_BUILD;
817 alvherre 3931 CBC 217 : progress_vals[2] = newidx->indexId;
817 alvherre 3932 GIC 217 : progress_vals[3] = newidx->amId;
922 michael 3933 217 : pgstat_progress_update_multi_param(4, progress_index, progress_vals);
1472 peter 3934 ECB :
3935 : /* Perform concurrent build of new index */
817 alvherre 3936 CBC 217 : index_concurrently_build(newidx->tableId, newidx->indexId);
3937 :
1472 peter 3938 214 : PopActiveSnapshot();
1472 peter 3939 GIC 214 : CommitTransactionCommand();
3940 : }
814 alvherre 3941 ECB :
1472 peter 3942 CBC 169 : StartTransactionCommand();
3943 :
814 alvherre 3944 ECB : /*
3945 : * Because we don't take a snapshot or Xid in this transaction, there's no
3946 : * need to set the PROC_IN_SAFE_IC flag here.
3947 : */
3948 :
3949 : /*
3950 : * Phase 3 of REINDEX CONCURRENTLY
1472 peter 3951 : *
3952 : * During this phase the old indexes catch up with any new tuples that
3953 : * were created during the previous phase. See "phase 3" in DefineIndex()
3954 : * for more details.
3955 : */
3956 :
1463 peter 3957 GIC 169 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
1463 peter 3958 ECB : PROGRESS_CREATEIDX_PHASE_WAIT_2);
1463 peter 3959 CBC 169 : WaitForLockersMultiple(lockTags, ShareLock, true);
1472 3960 169 : CommitTransactionCommand();
3961 :
1472 peter 3962 GIC 383 : foreach(lc, newIndexIds)
3963 : {
817 alvherre 3964 214 : ReindexIndexInfo *newidx = lfirst(lc);
3965 : TransactionId limitXmin;
3966 : Snapshot snapshot;
3967 :
1472 peter 3968 214 : StartTransactionCommand();
3969 :
3970 : /*
3971 : * Check for user-requested abort. This is inside a transaction so as
3972 : * xact.c does not issue a useless WARNING, and ensures that
3973 : * session-level locks are cleaned up on abort.
3974 : */
1262 michael 3975 214 : CHECK_FOR_INTERRUPTS();
3976 :
814 alvherre 3977 ECB : /* Tell concurrent indexing to ignore us, if index qualifies */
814 alvherre 3978 GIC 214 : if (newidx->safe)
814 alvherre 3979 CBC 202 : set_indexsafe_procflags();
814 alvherre 3980 ECB :
3981 : /*
1472 peter 3982 : * Take the "reference snapshot" that will be used by validate_index()
3983 : * to filter candidate tuples.
3984 : */
1472 peter 3985 GIC 214 : snapshot = RegisterSnapshot(GetTransactionSnapshot());
3986 214 : PushActiveSnapshot(snapshot);
1472 peter 3987 ECB :
3988 : /*
3989 : * Update progress for the index to build, with the correct parent
3990 : * table involved.
3991 : */
817 alvherre 3992 GIC 214 : pgstat_progress_start_command(PROGRESS_COMMAND_CREATE_INDEX,
3993 : newidx->tableId);
922 michael 3994 CBC 214 : progress_vals[0] = PROGRESS_CREATEIDX_COMMAND_REINDEX_CONCURRENTLY;
922 michael 3995 GIC 214 : progress_vals[1] = PROGRESS_CREATEIDX_PHASE_VALIDATE_IDXSCAN;
817 alvherre 3996 214 : progress_vals[2] = newidx->indexId;
817 alvherre 3997 CBC 214 : progress_vals[3] = newidx->amId;
922 michael 3998 214 : pgstat_progress_update_multi_param(4, progress_index, progress_vals);
3999 :
817 alvherre 4000 GIC 214 : validate_index(newidx->tableId, newidx->indexId, snapshot);
1472 peter 4001 ECB :
4002 : /*
4003 : * We can now do away with our active snapshot, we still need to save
4004 : * the xmin limit to wait for older snapshots.
4005 : */
1472 peter 4006 GIC 214 : limitXmin = snapshot->xmin;
1472 peter 4007 ECB :
5445 alvherre 4008 CBC 214 : PopActiveSnapshot();
1472 peter 4009 214 : UnregisterSnapshot(snapshot);
1472 peter 4010 ECB :
4011 : /*
4012 : * To ensure no deadlocks, we must commit and start yet another
4013 : * transaction, and do our wait before any snapshot has been taken in
4014 : * it.
4015 : */
1472 peter 4016 GIC 214 : CommitTransactionCommand();
1472 peter 4017 CBC 214 : StartTransactionCommand();
1472 peter 4018 ECB :
4019 : /*
4020 : * The index is now valid in the sense that it contains all currently
1418 tgl 4021 : * interesting tuples. But since it might not contain tuples deleted
4022 : * just before the reference snap was taken, we have to wait out any
4023 : * transactions that might have older snapshots.
4024 : *
4025 : * Because we don't take a snapshot or Xid in this transaction,
4026 : * there's no need to set the PROC_IN_SAFE_IC flag here.
4027 : */
1463 peter 4028 GIC 214 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
4029 : PROGRESS_CREATEIDX_PHASE_WAIT_3);
4030 214 : WaitForOlderSnapshots(limitXmin, true);
4031 :
7270 tgl 4032 214 : CommitTransactionCommand();
4033 : }
4034 :
4035 : /*
1472 peter 4036 ECB : * Phase 4 of REINDEX CONCURRENTLY
4037 : *
4038 : * Now that the new indexes have been validated, swap each new index with
4039 : * its corresponding old index.
4040 : *
4041 : * We mark the new indexes as valid and the old indexes as not valid at
4042 : * the same time to make sure we only get constraint violations from the
4043 : * indexes with the correct names.
4044 : */
4045 :
7270 tgl 4046 GIC 169 : StartTransactionCommand();
8320 tgl 4047 ECB :
4048 : /*
4049 : * Because this transaction only does catalog manipulations and doesn't do
4050 : * any index operations, we can set the PROC_IN_SAFE_IC flag here
4051 : * unconditionally.
4052 : */
814 alvherre 4053 GIC 169 : set_indexsafe_procflags();
814 alvherre 4054 ECB :
1472 peter 4055 GIC 383 : forboth(lc, indexIds, lc2, newIndexIds)
4056 : {
817 alvherre 4057 CBC 214 : ReindexIndexInfo *oldidx = lfirst(lc);
4058 214 : ReindexIndexInfo *newidx = lfirst(lc2);
4059 : char *oldName;
4060 :
4061 : /*
4062 : * Check for user-requested abort. This is inside a transaction so as
4063 : * xact.c does not issue a useless WARNING, and ensures that
1262 michael 4064 ECB : * session-level locks are cleaned up on abort.
4065 : */
1472 peter 4066 GIC 214 : CHECK_FOR_INTERRUPTS();
4067 :
4068 : /* Choose a relation name for old index */
817 alvherre 4069 214 : oldName = ChooseRelationName(get_rel_name(oldidx->indexId),
4070 : NULL,
1472 peter 4071 ECB : "ccold",
4072 : get_rel_namespace(oldidx->tableId),
4073 : false);
4074 :
4075 : /*
4076 : * Swap old index with the new one. This also marks the new one as
4077 : * valid and the old one as not valid.
4078 : */
817 alvherre 4079 CBC 214 : index_concurrently_swap(newidx->indexId, oldidx->indexId, oldName);
4080 :
4081 : /*
4082 : * Invalidate the relcache for the table, so that after this commit
4083 : * all sessions will refresh any cached plans that might reference the
4084 : * index.
1472 peter 4085 ECB : */
817 alvherre 4086 GIC 214 : CacheInvalidateRelcacheByRelid(oldidx->tableId);
1472 peter 4087 ECB :
4088 : /*
4089 : * CCI here so that subsequent iterations see the oldName in the
4090 : * catalog and can choose a nonconflicting name for their oldName.
4091 : * Otherwise, this could lead to conflicts if a table has two indexes
4092 : * whose names are equal for the first NAMEDATALEN-minus-a-few
4093 : * characters.
4094 : */
1472 peter 4095 CBC 214 : CommandCounterIncrement();
1472 peter 4096 ECB : }
4097 :
4098 : /* Commit this transaction and make index swaps visible */
1472 peter 4099 GIC 169 : CommitTransactionCommand();
4100 169 : StartTransactionCommand();
4101 :
4102 : /*
4103 : * While we could set PROC_IN_SAFE_IC if all indexes qualified, there's no
4104 : * real need for that, because we only acquire an Xid after the wait is
4105 : * done, and that lasts for a very short period.
4106 : */
814 alvherre 4107 ECB :
4108 : /*
1472 peter 4109 : * Phase 5 of REINDEX CONCURRENTLY
4110 : *
4111 : * Mark the old indexes as dead. First we must wait until no running
4112 : * transaction could be using the index for a query. See also
4113 : * index_drop() for more details.
4114 : */
4115 :
1463 peter 4116 GIC 169 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
4117 : PROGRESS_CREATEIDX_PHASE_WAIT_4);
4118 169 : WaitForLockersMultiple(lockTags, AccessExclusiveLock, true);
4119 :
1472 4120 383 : foreach(lc, indexIds)
4121 : {
817 alvherre 4122 214 : ReindexIndexInfo *oldidx = lfirst(lc);
4123 :
4124 : /*
1262 michael 4125 ECB : * Check for user-requested abort. This is inside a transaction so as
4126 : * xact.c does not issue a useless WARNING, and ensures that
4127 : * session-level locks are cleaned up on abort.
4128 : */
1472 peter 4129 GIC 214 : CHECK_FOR_INTERRUPTS();
4130 :
817 alvherre 4131 214 : index_concurrently_set_dead(oldidx->tableId, oldidx->indexId);
1472 peter 4132 ECB : }
4133 :
4134 : /* Commit this transaction to make the updates visible. */
1472 peter 4135 GIC 169 : CommitTransactionCommand();
1472 peter 4136 CBC 169 : StartTransactionCommand();
1472 peter 4137 ECB :
4138 : /*
4139 : * While we could set PROC_IN_SAFE_IC if all indexes qualified, there's no
4140 : * real need for that, because we only acquire an Xid after the wait is
4141 : * done, and that lasts for a very short period.
4142 : */
4143 :
4144 : /*
4145 : * Phase 6 of REINDEX CONCURRENTLY
4146 : *
4147 : * Drop the old indexes.
4148 : */
4149 :
1463 peter 4150 GIC 169 : pgstat_progress_update_param(PROGRESS_CREATEIDX_PHASE,
4151 : PROGRESS_CREATEIDX_PHASE_WAIT_5);
4152 169 : WaitForLockersMultiple(lockTags, AccessExclusiveLock, true);
4153 :
1472 4154 169 : PushActiveSnapshot(GetTransactionSnapshot());
4155 :
4156 : {
4157 169 : ObjectAddresses *objects = new_object_addresses();
1472 peter 4158 ECB :
1472 peter 4159 GIC 383 : foreach(lc, indexIds)
4160 : {
817 alvherre 4161 214 : ReindexIndexInfo *idx = lfirst(lc);
4162 : ObjectAddress object;
4163 :
1471 peter 4164 214 : object.classId = RelationRelationId;
817 alvherre 4165 CBC 214 : object.objectId = idx->indexId;
1471 peter 4166 GIC 214 : object.objectSubId = 0;
4167 :
4168 214 : add_exact_object_address(&object, objects);
4169 : }
4170 :
4171 : /*
4172 : * Use PERFORM_DELETION_CONCURRENT_LOCK so that index_drop() uses the
4173 : * right lock level.
1472 peter 4174 ECB : */
1472 peter 4175 GIC 169 : performMultipleDeletions(objects, DROP_RESTRICT,
4176 : PERFORM_DELETION_CONCURRENT_LOCK | PERFORM_DELETION_INTERNAL);
4177 : }
1472 peter 4178 ECB :
1472 peter 4179 CBC 169 : PopActiveSnapshot();
1472 peter 4180 GIC 169 : CommitTransactionCommand();
4181 :
4182 : /*
4183 : * Finally, release the session-level lock on the table.
4184 : */
4185 807 : foreach(lc, relationLocks)
4186 : {
1418 tgl 4187 638 : LockRelId *lockrelid = (LockRelId *) lfirst(lc);
4188 :
1472 peter 4189 638 : UnlockRelationIdForSession(lockrelid, ShareUpdateExclusiveLock);
4190 : }
4191 :
4192 : /* Start a new transaction to finish process properly */
4193 169 : StartTransactionCommand();
4194 :
1472 peter 4195 ECB : /* Log what we did */
811 michael 4196 GIC 169 : if ((params->options & REINDEXOPT_VERBOSE) != 0)
1472 peter 4197 ECB : {
1472 peter 4198 GIC 2 : if (relkind == RELKIND_INDEX)
1472 peter 4199 LBC 0 : ereport(INFO,
4200 : (errmsg("index \"%s.%s\" was reindexed",
1472 peter 4201 ECB : relationNamespace, relationName),
4202 : errdetail("%s.",
4203 : pg_rusage_show(&ru0))));
4204 : else
4205 : {
1472 peter 4206 GIC 6 : foreach(lc, newIndexIds)
4207 : {
817 alvherre 4208 CBC 4 : ReindexIndexInfo *idx = lfirst(lc);
817 alvherre 4209 GIC 4 : Oid indOid = idx->indexId;
1472 peter 4210 ECB :
1472 peter 4211 GIC 4 : ereport(INFO,
4212 : (errmsg("index \"%s.%s\" was reindexed",
4213 : get_namespace_name(get_rel_namespace(indOid)),
1472 peter 4214 ECB : get_rel_name(indOid))));
4215 : /* Don't show rusage here, since it's not per index. */
4216 : }
4217 :
1472 peter 4218 GIC 2 : ereport(INFO,
4219 : (errmsg("table \"%s.%s\" was reindexed",
4220 : relationNamespace, relationName),
4221 : errdetail("%s.",
4222 : pg_rusage_show(&ru0))));
4223 : }
4224 : }
4225 :
8320 tgl 4226 169 : MemoryContextDelete(private_context);
4227 :
1463 peter 4228 169 : pgstat_progress_end_command();
1463 peter 4229 ECB :
1472 peter 4230 GIC 169 : return true;
8451 inoue 4231 ECB : }
4232 :
1906 alvherre 4233 : /*
4234 : * Insert or delete an appropriate pg_inherits tuple to make the given index
4235 : * be a partition of the indicated parent index.
4236 : *
4237 : * This also corrects the pg_depend information for the affected index.
4238 : */
4239 : void
1906 alvherre 4240 CBC 315 : IndexSetParentIndex(Relation partitionIdx, Oid parentOid)
4241 : {
4242 : Relation pg_inherits;
1809 tgl 4243 ECB : ScanKeyData key[2];
4244 : SysScanDesc scan;
1906 alvherre 4245 CBC 315 : Oid partRelid = RelationGetRelid(partitionIdx);
4246 : HeapTuple tuple;
1906 alvherre 4247 ECB : bool fix_dependencies;
4248 :
4249 : /* Make sure this is an index */
1906 alvherre 4250 GIC 315 : Assert(partitionIdx->rd_rel->relkind == RELKIND_INDEX ||
4251 : partitionIdx->rd_rel->relkind == RELKIND_PARTITIONED_INDEX);
4252 :
4253 : /*
1906 alvherre 4254 ECB : * Scan pg_inherits for rows linking our index to some parent.
4255 : */
1906 alvherre 4256 GIC 315 : pg_inherits = relation_open(InheritsRelationId, RowExclusiveLock);
4257 315 : ScanKeyInit(&key[0],
1906 alvherre 4258 ECB : Anum_pg_inherits_inhrelid,
4259 : BTEqualStrategyNumber, F_OIDEQ,
4260 : ObjectIdGetDatum(partRelid));
1906 alvherre 4261 GIC 315 : ScanKeyInit(&key[1],
4262 : Anum_pg_inherits_inhseqno,
4263 : BTEqualStrategyNumber, F_INT4EQ,
1906 alvherre 4264 ECB : Int32GetDatum(1));
1906 alvherre 4265 GIC 315 : scan = systable_beginscan(pg_inherits, InheritsRelidSeqnoIndexId, true,
1906 alvherre 4266 ECB : NULL, 2, key);
1906 alvherre 4267 GIC 315 : tuple = systable_getnext(scan);
1906 alvherre 4268 ECB :
1906 alvherre 4269 GIC 315 : if (!HeapTupleIsValid(tuple))
4270 : {
4271 251 : if (parentOid == InvalidOid)
1906 alvherre 4272 ECB : {
4273 : /*
4274 : * No pg_inherits row, and no parent wanted: nothing to do in this
1809 tgl 4275 : * case.
4276 : */
1906 alvherre 4277 LBC 0 : fix_dependencies = false;
1906 alvherre 4278 EUB : }
4279 : else
4280 : {
745 alvherre 4281 GIC 251 : StoreSingleInheritance(partRelid, parentOid, 1);
1906 4282 251 : fix_dependencies = true;
4283 : }
4284 : }
1906 alvherre 4285 ECB : else
4286 : {
1809 tgl 4287 CBC 64 : Form_pg_inherits inhForm = (Form_pg_inherits) GETSTRUCT(tuple);
1906 alvherre 4288 ECB :
1906 alvherre 4289 GIC 64 : if (parentOid == InvalidOid)
1906 alvherre 4290 ECB : {
4291 : /*
4292 : * There exists a pg_inherits row, which we want to clear; do so.
4293 : */
1906 alvherre 4294 GIC 64 : CatalogTupleDelete(pg_inherits, &tuple->t_self);
4295 64 : fix_dependencies = true;
4296 : }
1906 alvherre 4297 ECB : else
4298 : {
4299 : /*
4300 : * A pg_inherits row exists. If it's the same we want, then we're
4301 : * good; if it differs, that amounts to a corrupt catalog and
4302 : * should not happen.
4303 : */
1906 alvherre 4304 UIC 0 : if (inhForm->inhparent != parentOid)
1906 alvherre 4305 ECB : {
4306 : /* unexpected: we should not get called in this case */
1906 alvherre 4307 LBC 0 : elog(ERROR, "bogus pg_inherit row: inhrelid %u inhparent %u",
4308 : inhForm->inhrelid, inhForm->inhparent);
1906 alvherre 4309 ECB : }
4310 :
4311 : /* already in the right state */
1906 alvherre 4312 UIC 0 : fix_dependencies = false;
4313 : }
4314 : }
4315 :
4316 : /* done with pg_inherits */
1906 alvherre 4317 GIC 315 : systable_endscan(scan);
4318 315 : relation_close(pg_inherits, RowExclusiveLock);
1906 alvherre 4319 ECB :
4320 : /* set relhassubclass if an index partition has been added to the parent */
1630 michael 4321 GIC 315 : if (OidIsValid(parentOid))
4322 251 : SetRelationHasSubclass(parentOid, true);
4323 :
1445 alvherre 4324 ECB : /* set relispartition correctly on the partition */
1445 alvherre 4325 GIC 315 : update_relispartition(partRelid, OidIsValid(parentOid));
4326 :
1906 4327 315 : if (fix_dependencies)
4328 : {
1906 alvherre 4329 ECB : /*
4330 : * Insert/delete pg_depend rows. If setting a parent, add PARTITION
4331 : * dependencies on the parent index and the table; if removing a
4332 : * parent, delete PARTITION dependencies.
4333 : */
1906 alvherre 4334 GIC 315 : if (OidIsValid(parentOid))
1906 alvherre 4335 ECB : {
1518 tgl 4336 : ObjectAddress partIdx;
4337 : ObjectAddress parentIdx;
4338 : ObjectAddress partitionTbl;
4339 :
1518 tgl 4340 CBC 251 : ObjectAddressSet(partIdx, RelationRelationId, partRelid);
1906 alvherre 4341 GIC 251 : ObjectAddressSet(parentIdx, RelationRelationId, parentOid);
1518 tgl 4342 251 : ObjectAddressSet(partitionTbl, RelationRelationId,
4343 : partitionIdx->rd_index->indrelid);
1518 tgl 4344 CBC 251 : recordDependencyOn(&partIdx, &parentIdx,
4345 : DEPENDENCY_PARTITION_PRI);
4346 251 : recordDependencyOn(&partIdx, &partitionTbl,
4347 : DEPENDENCY_PARTITION_SEC);
1906 alvherre 4348 ECB : }
4349 : else
4350 : {
1906 alvherre 4351 GIC 64 : deleteDependencyRecordsForClass(RelationRelationId, partRelid,
4352 : RelationRelationId,
4353 : DEPENDENCY_PARTITION_PRI);
1518 tgl 4354 64 : deleteDependencyRecordsForClass(RelationRelationId, partRelid,
4355 : RelationRelationId,
1518 tgl 4356 EUB : DEPENDENCY_PARTITION_SEC);
4357 : }
4358 :
4359 : /* make our updates visible */
1846 alvherre 4360 CBC 315 : CommandCounterIncrement();
1906 alvherre 4361 ECB : }
1906 alvherre 4362 GIC 315 : }
4363 :
4364 : /*
4365 : * Subroutine of IndexSetParentIndex to update the relispartition flag of the
1445 alvherre 4366 ECB : * given index to the given value.
4367 : */
4368 : static void
1445 alvherre 4369 GIC 315 : update_relispartition(Oid relationId, bool newval)
4370 : {
4371 : HeapTuple tup;
4372 : Relation classRel;
1445 alvherre 4373 ECB :
1445 alvherre 4374 CBC 315 : classRel = table_open(RelationRelationId, RowExclusiveLock);
1445 alvherre 4375 GIC 315 : tup = SearchSysCacheCopy1(RELOID, ObjectIdGetDatum(relationId));
1435 tgl 4376 315 : if (!HeapTupleIsValid(tup))
1435 tgl 4377 UIC 0 : elog(ERROR, "cache lookup failed for relation %u", relationId);
1445 alvherre 4378 GIC 315 : Assert(((Form_pg_class) GETSTRUCT(tup))->relispartition != newval);
4379 315 : ((Form_pg_class) GETSTRUCT(tup))->relispartition = newval;
4380 315 : CatalogTupleUpdate(classRel, &tup->t_self, tup);
4381 315 : heap_freetuple(tup);
4382 315 : table_close(classRel, RowExclusiveLock);
1445 alvherre 4383 GBC 315 : }
4384 :
4385 : /*
865 alvherre 4386 EUB : * Set the PROC_IN_SAFE_IC flag in MyProc->statusFlags.
4387 : *
4388 : * When doing concurrent index builds, we can set this flag
4389 : * to tell other processes concurrently running CREATE
4390 : * INDEX CONCURRENTLY or REINDEX CONCURRENTLY to ignore us when
4391 : * doing their waits for concurrent snapshots. On one hand it
4392 : * avoids pointlessly waiting for a process that's not interesting
4393 : * anyway; but more importantly it avoids deadlocks in some cases.
4394 : *
4395 : * This can be done safely only for indexes that don't execute any
865 alvherre 4396 ECB : * expressions that could access other tables, so index must not be
4397 : * expressional nor partial. Caller is responsible for only calling
4398 : * this routine when that assumption holds true.
4399 : *
4400 : * (The flag is reset automatically at transaction end, so it must be
4401 : * set for each transaction.)
4402 : */
4403 : static inline void
865 alvherre 4404 CBC 726 : set_indexsafe_procflags(void)
4405 : {
865 alvherre 4406 ECB : /*
4407 : * This should only be called before installing xid or xmin in MyProc;
4408 : * otherwise, concurrent processes could see an Xmin that moves backwards.
4409 : */
865 alvherre 4410 GIC 726 : Assert(MyProc->xid == InvalidTransactionId &&
4411 : MyProc->xmin == InvalidTransactionId);
4412 :
865 alvherre 4413 CBC 726 : LWLockAcquire(ProcArrayLock, LW_EXCLUSIVE);
865 alvherre 4414 GIC 726 : MyProc->statusFlags |= PROC_IN_SAFE_IC;
4415 726 : ProcGlobal->statusFlags[MyProc->pgxactoff] = MyProc->statusFlags;
4416 726 : LWLockRelease(ProcArrayLock);
4417 726 : }
|