63#include "utils/fmgroids.h"
83 Datum *opclassOptions,
86 const List *exclusionOpNames,
88 const char *accessMethodName,
92 bool iswithoutoverlaps,
95 int *ddl_save_nestlevel);
97 const List *colnames,
const List *exclusionOpNames,
98 bool primary,
bool isconstraint);
179 const char *accessMethodName,
180 const List *attributeList,
181 const List *exclusionOpNames,
182 bool isWithoutOverlaps)
188 Datum *opclassOptions;
199 int numberOfAttributes;
215 isconstraint =
false;
218 Assert(numberOfAttributes > 0);
225 (
errcode(ERRCODE_UNDEFINED_OBJECT),
226 errmsg(
"access method \"%s\" does not exist",
229 accessMethodId = accessMethodForm->oid;
244 indexInfo =
makeIndexInfo(numberOfAttributes, numberOfAttributes,
245 accessMethodId,
NIL,
NIL,
false,
false,
246 false,
false, amsummarizing, isWithoutOverlaps);
253 typeIds, collationIds, opclassIds, opclassOptions,
254 coloptions, attributeList,
255 exclusionOpNames, relationId,
256 accessMethodName, accessMethodId,
257 amcanorder, isconstraint, isWithoutOverlaps,
InvalidOid,
263 elog(
ERROR,
"cache lookup failed for index %u", oldId);
272 indexForm->indisvalid))
279 old_natts = indexForm->indnkeyatts;
280 Assert(old_natts == numberOfAttributes);
288 ret = (memcmp(old_indclass->
values, opclassIds, old_natts *
sizeof(
Oid)) == 0 &&
289 memcmp(old_indcollation->
values, collationIds, old_natts *
sizeof(
Oid)) == 0);
298 for (
i = 0;
i < old_natts;
i++)
313 for (
i = 0;
i < old_natts;
i++)
318 pfree(oldOpclassOptions);
330 old_natts *
sizeof(
Oid)) == 0;
335 for (
i = 0;
i < old_natts && ret;
i++)
341 if ((IsPolymorphicType(left) || IsPolymorphicType(right)) &&
367 if (!opts1 && !opts2)
371 for (
i = 0;
i < natts;
i++)
376 if (opt1 == (
Datum) 0)
378 if (opt2 == (
Datum) 0)
383 else if (opt2 == (
Datum) 0)
448 for (
i = 0;
i < n_old_snapshots;
i++)
457 int n_newer_snapshots;
466 for (
j =
i;
j < n_old_snapshots;
j++)
470 for (k = 0; k < n_newer_snapshots; k++)
476 if (k >= n_newer_snapshots)
479 pfree(newer_snapshots);
546 Oid parentConstraintId,
550 bool check_not_in_use,
555 char *indexRelationName;
556 char *accessMethodName;
560 Datum *opclassOptions;
566 List *allIndexParams;
572 bool amissummarizing;
582 int numberOfAttributes;
583 int numberOfKeyAttributes;
590 Oid root_save_userid;
591 int root_save_sec_context;
592 int root_save_nestlevel;
603 if (
stmt->reset_default_tblspc)
653 stmt->indexIncludingParams);
656 if (numberOfKeyAttributes <= 0)
658 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
659 errmsg(
"must specify at least one column")));
662 (
errcode(ERRCODE_TOO_MANY_COLUMNS),
663 errmsg(
"cannot use more than %d columns in an index",
699 exclusion =
stmt->excludeOpNames ||
stmt->iswithoutoverlaps;
702 switch (rel->
rd_rel->relkind)
704 case RELKIND_RELATION:
705 case RELKIND_MATVIEW:
706 case RELKIND_PARTITIONED_TABLE:
711 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
712 errmsg(
"cannot create index on relation \"%s\"",
726 partitioned = rel->
rd_rel->relkind == RELKIND_PARTITIONED_TABLE;
735 if (
stmt->concurrent)
737 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
738 errmsg(
"cannot create index on partitioned table \"%s\" concurrently",
747 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
748 errmsg(
"cannot create indexes on temporary tables of other sessions")));
756 if (check_not_in_use)
769 aclresult =
object_aclcheck(NamespaceRelationId, namespaceId, root_save_userid,
780 if (
stmt->tableSpace)
785 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
786 errmsg(
"cannot specify default tablespace for partitioned relations")));
801 aclresult =
object_aclcheck(TableSpaceRelationId, tablespaceId, root_save_userid,
813 if (rel->
rd_rel->relisshared)
814 tablespaceId = GLOBALTABLESPACE_OID;
815 else if (tablespaceId == GLOBALTABLESPACE_OID)
817 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
818 errmsg(
"only shared relations can be placed in pg_global tablespace")));
828 indexRelationName =
stmt->idxname;
829 if (indexRelationName == NULL)
833 stmt->excludeOpNames,
840 accessMethodName =
stmt->accessMethod;
848 if (strcmp(accessMethodName,
"rtree") == 0)
851 (
errmsg(
"substituting access method \"gist\" for obsolete method \"rtree\"")));
852 accessMethodName =
"gist";
858 (
errcode(ERRCODE_UNDEFINED_OBJECT),
859 errmsg(
"access method \"%s\" does not exist",
863 accessMethodId = accessMethodForm->oid;
871 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
872 errmsg(
"access method \"%s\" does not support unique indexes",
876 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
877 errmsg(
"access method \"%s\" does not support included columns",
881 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
882 errmsg(
"access method \"%s\" does not support multicolumn indexes",
884 if (exclusion && amRoutine->
amgettuple == NULL)
886 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
887 errmsg(
"access method \"%s\" does not support exclusion constraints",
889 if (
stmt->iswithoutoverlaps && strcmp(accessMethodName,
"gist") != 0)
891 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
892 errmsg(
"access method \"%s\" does not support WITHOUT OVERLAPS constraints",
905 if (
stmt->whereClause)
912 NULL, NULL,
false,
false);
922 numberOfKeyAttributes,
927 stmt->nulls_not_distinct,
931 stmt->iswithoutoverlaps);
939 typeIds, collationIds, opclassIds, opclassOptions,
940 coloptions, allIndexParams,
941 stmt->excludeOpNames, tableId,
942 accessMethodName, accessMethodId,
943 amcanorder,
stmt->isconstraint,
stmt->iswithoutoverlaps,
944 root_save_userid, root_save_sec_context,
945 &root_save_nestlevel);
963 if (partitioned && (
stmt->unique || exclusion))
966 const char *constraint_type;
970 constraint_type =
"PRIMARY KEY";
971 else if (
stmt->unique)
972 constraint_type =
"UNIQUE";
973 else if (
stmt->excludeOpNames)
974 constraint_type =
"EXCLUDE";
978 constraint_type = NULL;
985 for (
i = 0;
i <
key->partnatts;
i++)
1004 key->partopcintype[
i],
1005 key->partopcintype[
i],
1008 elog(
ERROR,
"missing operator %d(%u,%u) in partition opfamily %u",
1009 eq_strategy,
key->partopcintype[
i],
key->partopcintype[
i],
1010 key->partopfamily[
i]);
1016 if (
key->partattrs[
i] == 0)
1018 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1019 errmsg(
"unsupported %s constraint with partition key definition",
1021 errdetail(
"%s constraints cannot be used when partition keys include expressions.",
1036 if (
key->partcollation[
i] != collationIds[
j])
1045 if (
stmt->unique && !
stmt->iswithoutoverlaps)
1055 errcode(ERRCODE_UNDEFINED_OBJECT),
1057 errdetail(
"There is no suitable operator in operator family \"%s\" for access method \"%s\".",
1060 if (ptkey_eqop == idx_eqop)
1076 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1077 errmsg(
"cannot match partition key to index on column \"%s\" using non-equal operator \"%s\"",
1090 key->partattrs[
i] - 1);
1092 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1093 errmsg(
"unique constraint on partitioned table must include all partitioning columns"),
1094 errdetail(
"%s constraint on table \"%s\" lacks column \"%s\" which is part of the partition key.",
1115 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1116 errmsg(
"index creation on system columns is not supported")));
1121 errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1123 errmsg(
"primary keys on virtual generated columns are not supported") :
1124 stmt->isconstraint ?
1125 errmsg(
"unique constraints on virtual generated columns are not supported") :
1126 errmsg(
"indexes on virtual generated columns are not supported"));
1146 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1147 errmsg(
"index creation on system columns is not supported")));
1162 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1163 stmt->isconstraint ?
1164 errmsg(
"unique constraints on virtual generated columns are not supported") :
1165 errmsg(
"indexes on virtual generated columns are not supported")));
1177 if (
stmt->isconstraint && !quiet)
1179 const char *constraint_type;
1182 constraint_type =
"PRIMARY KEY";
1183 else if (
stmt->unique)
1184 constraint_type =
"UNIQUE";
1185 else if (
stmt->excludeOpNames)
1186 constraint_type =
"EXCLUDE";
1190 constraint_type = NULL;
1194 (
errmsg_internal(
"%s %s will create implicit index \"%s\" for table \"%s\"",
1195 is_alter_table ?
"ALTER TABLE / ADD" :
"CREATE TABLE /",
1212 flags = constr_flags = 0;
1213 if (
stmt->isconstraint)
1215 if (skip_build || concurrent || partitioned)
1217 if (
stmt->if_not_exists)
1230 if (partitioned &&
stmt->relation && !
stmt->relation->inh)
1238 if (
stmt->deferrable)
1240 if (
stmt->initdeferred)
1242 if (
stmt->iswithoutoverlaps)
1246 index_create(rel, indexRelationName, indexRelationId, parentIndexId,
1248 stmt->oldNumber, indexInfo, indexColNames,
1249 accessMethodId, tablespaceId,
1250 collationIds, opclassIds, opclassOptions,
1251 coloptions, NULL, reloptions,
1252 flags, constr_flags,
1254 &createdConstraintId);
1288 if (
stmt->idxcomment != NULL)
1303 if ((!
stmt->relation ||
stmt->relation->inh) && partdesc->
nparts > 0)
1305 int nparts = partdesc->
nparts;
1307 bool invalidate_parent =
false;
1330 if (total_parts < 0)
1343 memcpy(part_oids, partdesc->
oids,
sizeof(
Oid) * nparts);
1353 parentIndex =
index_open(indexRelationId, lockmode);
1366 for (
int i = 0;
i < nparts;
i++)
1368 Oid childRelid = part_oids[
i];
1370 Oid child_save_userid;
1371 int child_save_sec_context;
1372 int child_save_nestlevel;
1381 &child_save_sec_context);
1392 if (childrel->
rd_rel->relkind == RELKIND_FOREIGN_TABLE)
1396 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
1397 errmsg(
"cannot create unique index on partitioned table \"%s\"",
1399 errdetail(
"Table \"%s\" contains partitions that are foreign tables.",
1404 child_save_sec_context);
1415 foreach(cell, childidxs)
1461 createdConstraintId,
1465 invalidate_parent =
true;
1491 child_save_sec_context);
1520 root_save_sec_context);
1525 createdConstraintId,
1527 is_alter_table, check_rights,
1531 child_save_sec_context);
1539 invalidate_parent =
true;
1552 if (invalidate_parent)
1561 elog(
ERROR,
"cache lookup failed for index %u",
1657 const int progress_cols[] = {
1661 const int64 progress_vals[] = {
1764 limitXmin = snapshot->
xmin;
1856 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
1857 errmsg(
"functions in index predicate must be marked IMMUTABLE")));
1874 Datum *opclassOptions,
1876 const List *attList,
1877 const List *exclusionOpNames,
1879 const char *accessMethodName,
1883 bool iswithoutoverlaps,
1885 int ddl_sec_context,
1886 int *ddl_save_nestlevel)
1893 int save_sec_context;
1896 if (exclusionOpNames)
1902 nextExclOp =
list_head(exclusionOpNames);
1913 if (iswithoutoverlaps)
1915 if (exclusionOpNames ==
NIL)
1931 foreach(lc, attList)
1940 if (attribute->
name != NULL)
1953 (
errcode(ERRCODE_UNDEFINED_COLUMN),
1954 errmsg(
"column \"%s\" named in key does not exist",
1958 (
errcode(ERRCODE_UNDEFINED_COLUMN),
1959 errmsg(
"column \"%s\" does not exist",
1964 atttype = attform->atttypid;
1965 attcollation = attform->attcollation;
1975 if (attn >= nkeycols)
1977 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1978 errmsg(
"expressions are not supported in included columns")));
2018 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2019 errmsg(
"functions in index expression must be marked IMMUTABLE")));
2023 typeOids[attn] = atttype;
2029 if (attn >= nkeycols)
2033 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2034 errmsg(
"including column does not support a collation")));
2037 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2038 errmsg(
"including column does not support an operator class")));
2041 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2042 errmsg(
"including column does not support ASC/DESC options")));
2045 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2046 errmsg(
"including column does not support NULLS FIRST/LAST options")));
2049 opclassOptions[attn] = (
Datum) 0;
2050 colOptions[attn] = 0;
2088 (
errcode(ERRCODE_INDETERMINATE_COLLATION),
2089 errmsg(
"could not determine which collation to use for index expression"),
2090 errhint(
"Use the COLLATE clause to set the collation explicitly.")));
2096 (
errcode(ERRCODE_DATATYPE_MISMATCH),
2097 errmsg(
"collations are not supported by type %s",
2101 collationOids[attn] = attcollation;
2163 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2164 errmsg(
"operator %s is not commutative",
2166 errdetail(
"Only commutative operators can be used in exclusion constraints.")));
2175 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2176 errmsg(
"operator %s is not a member of operator family \"%s\"",
2179 errdetail(
"The exclusion operator must be related to the index operator class for the constraint.")));
2184 nextExclOp =
lnext(exclusionOpNames, nextExclOp);
2186 else if (iswithoutoverlaps)
2192 if (attn == nkeycols - 1)
2207 colOptions[attn] = 0;
2212 colOptions[attn] |= INDOPTION_DESC;
2217 colOptions[attn] |= INDOPTION_NULLS_FIRST;
2220 colOptions[attn] |= INDOPTION_NULLS_FIRST;
2227 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2228 errmsg(
"access method \"%s\" does not support ASC/DESC options",
2229 accessMethodName)));
2232 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2233 errmsg(
"access method \"%s\" does not support NULLS FIRST/LAST options",
2234 accessMethodName)));
2242 opclassOptions[attn] =
2244 NULL, NULL,
false,
false);
2247 opclassOptions[attn] = (
Datum) 0;
2261 const char *accessMethodName,
Oid accessMethodId)
2276 (
errcode(ERRCODE_UNDEFINED_OBJECT),
2277 errmsg(
"data type %s has no default operator class for access method \"%s\"",
2279 errhint(
"You must specify an operator class for the index or define a default operator class for the data type.")));
2307 (
errcode(ERRCODE_UNDEFINED_OBJECT),
2308 errmsg(
"operator class \"%s\" does not exist for access method \"%s\"",
2309 opcname, accessMethodName)));
2315 (
errcode(ERRCODE_UNDEFINED_OBJECT),
2316 errmsg(
"operator class \"%s\" does not exist for access method \"%s\"",
2324 opClassId = opform->oid;
2325 opInputType = opform->opcintype;
2329 (
errcode(ERRCODE_DATATYPE_MISMATCH),
2330 errmsg(
"operator class \"%s\" does not accept data type %s",
2349 int ncompatible = 0;
2350 int ncompatiblepreferred = 0;
2377 Anum_pg_opclass_opcmethod,
2389 if (!opclass->opcdefault)
2391 if (opclass->opcintype == type_id)
2394 result = opclass->oid;
2396 else if (nexact == 0 &&
2401 ncompatiblepreferred++;
2402 result = opclass->oid;
2404 else if (ncompatiblepreferred == 0)
2407 result = opclass->oid;
2420 errmsg(
"there are multiple default operator classes for data type %s",
2424 ncompatiblepreferred == 1 ||
2425 (ncompatiblepreferred == 0 && ncompatible == 1))
2468 errcode(ERRCODE_UNDEFINED_OBJECT),
2472 errdetail(
"Could not translate compare type %d for operator family \"%s\", input type %s, access method \"%s\".",
2481 rhstype = opcintype;
2487 errcode(ERRCODE_UNDEFINED_OBJECT),
2491 errdetail(
"There is no suitable operator in operator family \"%s\" for access method \"%s\".",
2527 name1chars = strlen(name1);
2530 name2chars = strlen(name2);
2536 overhead += strlen(
label) + 1;
2546 while (name1chars + name2chars > availchars)
2548 if (name1chars > name2chars)
2554 name1chars =
pg_mbcliplen(name1, name1chars, name1chars);
2556 name2chars =
pg_mbcliplen(name2, name2chars, name2chars);
2559 name =
palloc(name1chars + name2chars + overhead + 1);
2560 memcpy(
name, name1, name1chars);
2565 memcpy(
name + ndx, name2, name2chars);
2605 const char *
label,
Oid namespaceid,
2621 if (!isconstraint ||
2628 snprintf(modlabel,
sizeof(modlabel),
"%s%d",
label, ++pass);
2641 const List *colnames,
const List *exclusionOpNames,
2642 bool primary,
bool isconstraint)
2655 else if (exclusionOpNames !=
NIL)
2663 else if (isconstraint)
2702 foreach(lc, colnames)
2704 const char *
name = (
const char *)
lfirst(lc);
2707 buf[buflen++] =
'_';
2714 buflen += strlen(
buf + buflen);
2734 foreach(lc, indexElems)
2737 const char *origname;
2738 const char *curname;
2745 else if (ielem->
name)
2746 origname = ielem->
name;
2758 foreach(lc2, result)
2760 if (strcmp(curname, (
char *)
lfirst(lc2)) == 0)
2771 memcpy(
buf, origname, nlen);
2772 strcpy(
buf + nlen, nbuf);
2794 bool concurrently =
false;
2796 char *tablespacename = NULL;
2799 foreach(lc,
stmt->params)
2803 if (strcmp(opt->
defname,
"verbose") == 0)
2805 else if (strcmp(opt->
defname,
"concurrently") == 0)
2807 else if (strcmp(opt->
defname,
"tablespace") == 0)
2811 (
errcode(ERRCODE_SYNTAX_ERROR),
2812 errmsg(
"unrecognized REINDEX option \"%s\"",
2819 "REINDEX CONCURRENTLY");
2829 if (tablespacename != NULL)
2870 "REINDEX DATABASE");
2874 elog(
ERROR,
"unrecognized object type: %d",
2919 if (relkind == RELKIND_PARTITIONED_INDEX)
2922 persistence != RELPERSISTENCE_TEMP)
2960 if (relId != oldRelId &&
OidIsValid(oldRelId))
2978 if (relkind != RELKIND_INDEX &&
2979 relkind != RELKIND_PARTITIONED_INDEX)
2981 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
2996 if (relId != oldRelId)
3005 state->locked_table_oid = table_oid;
3044 (
errmsg(
"table \"%s\" has no indexes that can be reindexed concurrently",
3058 (
errmsg(
"table \"%s\" has no indexes to reindex",
3086 bool concurrent_warning =
false;
3087 bool tablespace_warning =
false;
3088 const char *objectName =
stmt->name;
3104 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3105 errmsg(
"cannot reindex system catalogs concurrently")));
3128 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3129 errmsg(
"can only reindex the currently open database")));
3143 "ReindexMultipleTables",
3155 Anum_pg_class_relnamespace,
3173 Oid relid = classtuple->oid;
3182 if (classtuple->relkind != RELKIND_RELATION &&
3183 classtuple->relkind != RELKIND_MATVIEW)
3187 if (classtuple->relpersistence == RELPERSISTENCE_TEMP &&
3207 if (classtuple->relisshared &&
3218 if (!concurrent_warning)
3220 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3221 errmsg(
"cannot reindex system catalogs concurrently, skipping all")));
3222 concurrent_warning =
true;
3232 bool skip_rel =
false;
3238 if (RELKIND_HAS_STORAGE(classtuple->relkind) &&
3251 if (!tablespace_warning)
3253 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
3254 errmsg(
"cannot move system relations, skipping all")));
3255 tablespace_warning =
true;
3270 if (relid == RelationRelationId)
3299 if (errinfo->
relkind == RELKIND_PARTITIONED_TABLE)
3300 errcontext(
"while reindexing partitioned table \"%s.%s\"",
3302 else if (errinfo->
relkind == RELKIND_PARTITIONED_INDEX)
3303 errcontext(
"while reindexing partitioned index \"%s.%s\"",
3326 Assert(RELKIND_HAS_PARTITIONS(relkind));
3336 errcallback.
arg = &errinfo;
3341 relkind == RELKIND_PARTITIONED_TABLE ?
3342 "REINDEX TABLE" :
"REINDEX INDEX");
3364 foreach(lc, inhoids)
3374 if (!RELKIND_HAS_STORAGE(partkind))
3377 Assert(partkind == RELKIND_INDEX ||
3378 partkind == RELKIND_RELATION);
3419 char relpersistence;
3459 Assert(!RELKIND_HAS_PARTITIONS(relkind));
3462 relpersistence != RELPERSISTENCE_TEMP)
3472 else if (relkind == RELKIND_INDEX)
3496 (
errmsg(
"table \"%s.%s\" was reindexed",
3536 typedef struct ReindexIndexInfo
3553 char *relationName = NULL;
3554 char *relationNamespace = NULL;
3556 const int progress_index[] = {
3562 int64 progress_vals[4];
3571 "ReindexConcurrent",
3595 case RELKIND_RELATION:
3596 case RELKIND_MATVIEW:
3597 case RELKIND_TOASTVALUE:
3609 heapRelationIds =
lappend_oid(heapRelationIds, relationOid);
3615 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3616 errmsg(
"cannot reindex system catalogs concurrently")));
3634 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3635 errmsg(
"cannot move system relation \"%s\"",
3645 if (!indexRelation->
rd_index->indisvalid)
3647 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
3648 errmsg(
"skipping reindex of invalid index \"%s.%s\"",
3651 errhint(
"Use DROP INDEX or REINDEX INDEX.")));
3652 else if (indexRelation->
rd_index->indisexclusion)
3654 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3655 errmsg(
"cannot reindex exclusion constraint index \"%s.%s\" concurrently, skipping",
3660 ReindexIndexInfo *
idx;
3666 idx->indexId = cellOid;
3680 Oid toastOid = heapRelation->
rd_rel->reltoastrelid;
3688 heapRelationIds =
lappend_oid(heapRelationIds, toastOid);
3698 if (!indexRelation->
rd_index->indisvalid)
3700 (
errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
3701 errmsg(
"skipping reindex of invalid index \"%s.%s\"",
3704 errhint(
"Use DROP INDEX or REINDEX INDEX.")));
3707 ReindexIndexInfo *
idx;
3716 idx->indexId = cellOid;
3737 ReindexIndexInfo *
idx;
3745 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3746 errmsg(
"cannot reindex system catalogs concurrently")));
3756 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3757 errmsg(
"cannot reindex invalid index on TOAST table")));
3780 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3781 errmsg(
"cannot move system relation \"%s\"",
3797 idx->indexId = relationOid;
3805 case RELKIND_PARTITIONED_TABLE:
3806 case RELKIND_PARTITIONED_INDEX:
3810 (
errcode(ERRCODE_WRONG_OBJECT_TYPE),
3811 errmsg(
"cannot reindex this type of relation concurrently")));
3822 if (indexIds ==
NIL)
3828 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3829 errmsg(
"cannot move non-shared relation to tablespace \"%s\"",
3859 foreach(lc, indexIds)
3861 char *concurrentName;
3863 ReindexIndexInfo *newidx;
3868 int save_sec_context;
3893#ifdef USE_INJECTION_POINTS
3904 if (indexRel->
rd_rel->relpersistence == RELPERSISTENCE_TEMP)
3905 elog(
ERROR,
"cannot reindex a temporary table concurrently");
3910 progress_vals[1] = 0;
3911 progress_vals[2] =
idx->indexId;
3912 progress_vals[3] =
idx->amId;
3924 heapRel->
rd_rel->relkind != RELKIND_TOASTVALUE)
3927 tablespaceid = indexRel->
rd_rel->reltablespace;
3947 newidx->indexId = newIndexId;
3948 newidx->safe =
idx->safe;
3949 newidx->tableId =
idx->tableId;
3950 newidx->amId =
idx->amId;
3952 newIndexIds =
lappend(newIndexIds, newidx);
3962 relationLocks =
lappend(relationLocks, lockrelid);
3965 relationLocks =
lappend(relationLocks, lockrelid);
3999 foreach(lc, heapRelationIds)
4011 relationLocks =
lappend(relationLocks, lockrelid);
4017 lockTags =
lappend(lockTags, heaplocktag);
4026 foreach(lc, relationLocks)
4057 foreach(lc, newIndexIds)
4059 ReindexIndexInfo *newidx =
lfirst(lc);
4085 progress_vals[2] = newidx->indexId;
4086 progress_vals[3] = newidx->amId;
4116 foreach(lc, newIndexIds)
4118 ReindexIndexInfo *newidx =
lfirst(lc);
4149 progress_vals[2] = newidx->indexId;
4150 progress_vals[3] = newidx->amId;
4159 limitXmin = snapshot->
xmin;
4208 forboth(lc, indexIds, lc2, newIndexIds)
4210 ReindexIndexInfo *oldidx =
lfirst(lc);
4211 ReindexIndexInfo *newidx =
lfirst(lc2);
4281 foreach(lc, indexIds)
4283 ReindexIndexInfo *oldidx =
lfirst(lc);
4328 foreach(lc, indexIds)
4333 object.
classId = RelationRelationId;
4334 object.objectId =
idx->indexId;
4335 object.objectSubId = 0;
4354 foreach(lc, relationLocks)
4367 if (relkind == RELKIND_INDEX)
4369 (
errmsg(
"index \"%s.%s\" was reindexed",
4370 relationNamespace, relationName),
4375 foreach(lc, newIndexIds)
4378 Oid indOid =
idx->indexId;
4381 (
errmsg(
"index \"%s.%s\" was reindexed",
4388 (
errmsg(
"table \"%s.%s\" was reindexed",
4389 relationNamespace, relationName),
4419 Assert(partitionIdx->
rd_rel->relkind == RELKIND_INDEX ||
4420 partitionIdx->
rd_rel->relkind == RELKIND_PARTITIONED_INDEX);
4427 Anum_pg_inherits_inhrelid,
4431 Anum_pg_inherits_inhseqno,
4473 if (inhForm->inhparent != parentOid)
4476 elog(
ERROR,
"bogus pg_inherit row: inhrelid %u inhparent %u",
4477 inhForm->inhrelid, inhForm->inhparent);
4550 elog(
ERROR,
"cache lookup failed for relation %u", relationId);
Datum idx(PG_FUNCTION_ARGS)
bool has_privs_of_role(Oid member, Oid role)
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
AclResult object_aclcheck(Oid classid, Oid objectid, Oid roleid, AclMode mode)
bool object_ownercheck(Oid classid, Oid objectid, Oid roleid)
AclResult pg_class_aclcheck(Oid table_oid, Oid roleid, AclMode mode)
IndexAmRoutine * GetIndexAmRoutine(Oid amhandler)
StrategyNumber IndexAmTranslateCompareType(CompareType cmptype, Oid amoid, Oid opfamily, bool missing_ok)
bytea *(* amoptions_function)(Datum reloptions, bool validate)
char * get_am_name(Oid amOid)
void free_attrmap(AttrMap *map)
AttrMap * build_attrmap_by_name(TupleDesc indesc, TupleDesc outdesc, bool missing_ok)
#define InvalidAttrNumber
char * get_tablespace_name(Oid spc_oid)
Oid get_tablespace_oid(const char *tablespacename, bool missing_ok)
Oid GetDefaultTablespace(char relpersistence, bool partitioned)
void pgstat_progress_start_command(ProgressCommandType cmdtype, Oid relid)
void pgstat_progress_incr_param(int index, int64 incr)
void pgstat_progress_update_param(int index, int64 val)
void pgstat_progress_update_multi_param(int nparam, const int *index, const int64 *val)
void pgstat_progress_end_command(void)
@ PROGRESS_COMMAND_CREATE_INDEX
int bms_next_member(const Bitmapset *a, int prevbit)
bool bms_is_member(int x, const Bitmapset *a)
#define OidIsValid(objectId)
bool IsToastNamespace(Oid namespaceId)
bool IsSystemRelation(Relation relation)
bool IsCatalogRelationOid(Oid relid)
bool IsSystemClass(Oid relid, Form_pg_class reltuple)
bool contain_mutable_functions_after_planning(Expr *expr)
char * get_database_name(Oid dbid)
char * defGetString(DefElem *def)
bool defGetBoolean(DefElem *def)
void performMultipleDeletions(const ObjectAddresses *objects, DropBehavior behavior, int flags)
void add_exact_object_address(const ObjectAddress *object, ObjectAddresses *addrs)
ObjectAddresses * new_object_addresses(void)
@ DEPENDENCY_PARTITION_PRI
@ DEPENDENCY_PARTITION_SEC
#define PERFORM_DELETION_CONCURRENT_LOCK
#define PERFORM_DELETION_INTERNAL
int errmsg_internal(const char *fmt,...)
int errdetail(const char *fmt,...)
ErrorContextCallback * error_context_stack
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
void EventTriggerCollectSimpleCommand(ObjectAddress address, ObjectAddress secondaryObject, Node *parsetree)
#define palloc_object(type)
#define palloc_array(type, count)
Datum FunctionCall2Coll(FmgrInfo *flinfo, Oid collation, Datum arg1, Datum arg2)
void fmgr_info(Oid functionId, FmgrInfo *finfo)
void systable_endscan(SysScanDesc sysscan)
HeapTuple systable_getnext(SysScanDesc sysscan)
SysScanDesc systable_beginscan(Relation heapRelation, Oid indexId, bool indexOK, Snapshot snapshot, int nkeys, ScanKey key)
bool allowSystemTableMods
int NewGUCNestLevel(void)
void RestrictSearchPath(void)
void AtEOXact_GUC(bool isCommit, int nestLevel)
int set_config_option(const char *name, const char *value, GucContext context, GucSource source, GucAction action, bool changeVal, int elevel, bool is_reload)
Assert(PointerIsAligned(start, uint64))
HeapTuple heap_getnext(TableScanDesc sscan, ScanDirection direction)
HeapTuple heap_copytuple(HeapTuple tuple)
bool heap_attisnull(HeapTuple tup, int attnum, TupleDesc tupleDesc)
void heap_freetuple(HeapTuple htup)
#define HeapTupleIsValid(tuple)
static void * GETSTRUCT(const HeapTupleData *tuple)
void validate_index(Oid heapId, Oid indexId, Snapshot snapshot)
Oid IndexGetRelation(Oid indexId, bool missing_ok)
void index_concurrently_set_dead(Oid heapId, Oid indexId)
Oid index_create(Relation heapRelation, const char *indexRelationName, Oid indexRelationId, Oid parentIndexRelid, Oid parentConstraintId, RelFileNumber relFileNumber, IndexInfo *indexInfo, const List *indexColNames, Oid accessMethodId, Oid tableSpaceId, const Oid *collationIds, const Oid *opclassIds, const Datum *opclassOptions, const int16 *coloptions, const NullableDatum *stattargets, Datum reloptions, bits16 flags, bits16 constr_flags, bool allow_system_table_mods, bool is_internal, Oid *constraintId)
void index_concurrently_swap(Oid newIndexId, Oid oldIndexId, const char *oldName)
void index_set_state_flags(Oid indexId, IndexStateFlagsAction action)
bool CompareIndexInfo(const IndexInfo *info1, const IndexInfo *info2, const Oid *collations1, const Oid *collations2, const Oid *opfamilies1, const Oid *opfamilies2, const AttrMap *attmap)
bool reindex_relation(const ReindexStmt *stmt, Oid relid, int flags, const ReindexParams *params)
IndexInfo * BuildIndexInfo(Relation index)
Oid index_concurrently_create_copy(Relation heapRelation, Oid oldIndexId, Oid tablespaceOid, const char *newName)
void index_check_primary_key(Relation heapRel, const IndexInfo *indexInfo, bool is_alter_table, const IndexStmt *stmt)
void index_concurrently_build(Oid heapRelationId, Oid indexRelationId)
void reindex_index(const ReindexStmt *stmt, Oid indexId, bool skip_constraint_checks, char persistence, const ReindexParams *params)
#define INDEX_CREATE_IS_PRIMARY
#define INDEX_CREATE_IF_NOT_EXISTS
#define REINDEX_REL_PROCESS_TOAST
#define INDEX_CREATE_PARTITIONED
#define REINDEXOPT_CONCURRENTLY
#define REINDEXOPT_MISSING_OK
#define INDEX_CREATE_INVALID
#define INDEX_CONSTR_CREATE_WITHOUT_OVERLAPS
#define INDEX_CREATE_ADD_CONSTRAINT
#define INDEX_CREATE_SKIP_BUILD
#define INDEX_CONSTR_CREATE_DEFERRABLE
#define REINDEXOPT_REPORT_PROGRESS
#define INDEX_CONSTR_CREATE_INIT_DEFERRED
#define INDEX_CREATE_CONCURRENT
#define REINDEXOPT_VERBOSE
#define REINDEX_REL_CHECK_CONSTRAINTS
void index_close(Relation relation, LOCKMODE lockmode)
Relation index_open(Oid relationId, LOCKMODE lockmode)
static bool ReindexRelationConcurrently(const ReindexStmt *stmt, Oid relationOid, const ReindexParams *params)
void ExecReindex(ParseState *pstate, const ReindexStmt *stmt, bool isTopLevel)
ObjectAddress DefineIndex(Oid tableId, IndexStmt *stmt, Oid indexRelationId, Oid parentIndexId, Oid parentConstraintId, int total_parts, bool is_alter_table, bool check_rights, bool check_not_in_use, bool skip_build, bool quiet)
static void set_indexsafe_procflags(void)
char * ChooseRelationName(const char *name1, const char *name2, const char *label, Oid namespaceid, bool isconstraint)
static void reindex_error_callback(void *arg)
static void ComputeIndexAttrs(IndexInfo *indexInfo, Oid *typeOids, Oid *collationOids, Oid *opclassOids, Datum *opclassOptions, int16 *colOptions, const List *attList, const List *exclusionOpNames, Oid relId, const char *accessMethodName, Oid accessMethodId, bool amcanorder, bool isconstraint, bool iswithoutoverlaps, Oid ddl_userid, int ddl_sec_context, int *ddl_save_nestlevel)
static void ReindexIndex(const ReindexStmt *stmt, const ReindexParams *params, bool isTopLevel)
void IndexSetParentIndex(Relation partitionIdx, Oid parentOid)
char * makeObjectName(const char *name1, const char *name2, const char *label)
Oid GetDefaultOpClass(Oid type_id, Oid am_id)
static char * ChooseIndexNameAddition(const List *colnames)
static void ReindexMultipleTables(const ReindexStmt *stmt, const ReindexParams *params)
static bool CompareOpclassOptions(const Datum *opts1, const Datum *opts2, int natts)
static void update_relispartition(Oid relationId, bool newval)
bool CheckIndexCompatible(Oid oldId, const char *accessMethodName, const List *attributeList, const List *exclusionOpNames, bool isWithoutOverlaps)
void WaitForOlderSnapshots(TransactionId limitXmin, bool progress)
Oid ResolveOpClass(const List *opclass, Oid attrType, const char *accessMethodName, Oid accessMethodId)
static void ReindexPartitions(const ReindexStmt *stmt, Oid relid, const ReindexParams *params, bool isTopLevel)
struct ReindexErrorInfo ReindexErrorInfo
static Oid ReindexTable(const ReindexStmt *stmt, const ReindexParams *params, bool isTopLevel)
static void CheckPredicate(Expr *predicate)
static void ReindexMultipleInternal(const ReindexStmt *stmt, const List *relids, const ReindexParams *params)
static void RangeVarCallbackForReindexIndex(const RangeVar *relation, Oid relId, Oid oldRelId, void *arg)
static List * ChooseIndexColumnNames(const List *indexElems)
void GetOperatorFromCompareType(Oid opclass, Oid rhstype, CompareType cmptype, Oid *opid, StrategyNumber *strat)
static char * ChooseIndexName(const char *tabname, Oid namespaceId, const List *colnames, const List *exclusionOpNames, bool primary, bool isconstraint)
void CatalogTupleUpdate(Relation heapRel, ItemPointer otid, HeapTuple tup)
void CatalogTupleDelete(Relation heapRel, ItemPointer tid)
#define INJECTION_POINT(name)
void CacheInvalidateRelcacheByRelid(Oid relid)
List * lcons_oid(Oid datum, List *list)
List * lappend(List *list, void *datum)
List * list_concat_copy(const List *list1, const List *list2)
List * lappend_oid(List *list, Oid datum)
void list_free(List *list)
void UnlockRelationOid(Oid relid, LOCKMODE lockmode)
void WaitForLockersMultiple(List *locktags, LOCKMODE lockmode, bool progress)
void LockRelationIdForSession(LockRelId *relid, LOCKMODE lockmode)
void LockRelationOid(Oid relid, LOCKMODE lockmode)
void WaitForLockers(LOCKTAG heaplocktag, LOCKMODE lockmode, bool progress)
void UnlockRelationIdForSession(LockRelId *relid, LOCKMODE lockmode)
void UnlockTuple(Relation relation, ItemPointer tid, LOCKMODE lockmode)
bool VirtualXactLock(VirtualTransactionId vxid, bool wait)
#define VirtualTransactionIdIsValid(vxid)
#define SET_LOCKTAG_RELATION(locktag, dboid, reloid)
#define VirtualTransactionIdEquals(vxid1, vxid2)
#define SetInvalidVirtualTransactionId(vxid)
#define AccessExclusiveLock
#define InplaceUpdateTupleLock
#define ShareUpdateExclusiveLock
char * get_rel_name(Oid relid)
Oid get_opclass_method(Oid opclass)
char get_rel_persistence(Oid relid)
bool get_index_isvalid(Oid index_oid)
Oid get_opclass_input_type(Oid opclass)
Oid get_opclass_family(Oid opclass)
Oid get_opfamily_member_for_cmptype(Oid opfamily, Oid lefttype, Oid righttype, CompareType cmptype)
bool get_opclass_opfamily_and_input_type(Oid opclass, Oid *opfamily, Oid *opcintype)
char * get_opname(Oid opno)
Datum get_attoptions(Oid relid, int16 attnum)
char get_rel_relkind(Oid relid)
Oid get_rel_namespace(Oid relid)
RegProcedure get_opcode(Oid opno)
int get_op_opfamily_strategy(Oid opno, Oid opfamily)
Oid get_opfamily_member(Oid opfamily, Oid lefttype, Oid righttype, int16 strategy)
char * get_opfamily_name(Oid opfid, bool missing_ok)
bool type_is_collatable(Oid typid)
Oid get_opfamily_method(Oid opfid)
Oid getBaseType(Oid typid)
char * get_namespace_name(Oid nspid)
Oid get_relname_relid(const char *relname, Oid relnamespace)
Oid get_commutator(Oid opno)
void op_input_types(Oid opno, Oid *lefttype, Oid *righttype)
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
void LWLockRelease(LWLock *lock)
IndexInfo * makeIndexInfo(int numattrs, int numkeyattrs, Oid amoid, List *expressions, List *predicates, bool unique, bool nulls_not_distinct, bool isready, bool concurrent, bool summarizing, bool withoutoverlaps)
List * make_ands_implicit(Expr *clause)
int pg_mbcliplen(const char *mbstr, int len, int limit)
char * pstrdup(const char *in)
void pfree(void *pointer)
void MemoryContextDelete(MemoryContext context)
MemoryContext PortalContext
#define AllocSetContextCreate
#define ALLOCSET_DEFAULT_SIZES
#define ALLOCSET_SMALL_SIZES
#define IsBootstrapProcessingMode()
#define SECURITY_RESTRICTED_OPERATION
#define CHECK_FOR_INTERRUPTS()
void GetUserIdAndSecContext(Oid *userid, int *sec_context)
void SetUserIdAndSecContext(Oid userid, int sec_context)
Oid OpclassnameGetOpcid(Oid amid, const char *opcname)
char * NameListToString(const List *names)
Oid LookupExplicitNamespace(const char *nspname, bool missing_ok)
bool isTempNamespace(Oid namespaceId)
Oid get_collation_oid(List *collname, bool missing_ok)
void DeconstructQualifiedName(const List *names, char **nspname_p, char **objname_p)
Oid get_namespace_oid(const char *nspname, bool missing_ok)
Oid RangeVarGetRelidExtended(const RangeVar *relation, LOCKMODE lockmode, uint32 flags, RangeVarGetRelidCallback callback, void *callback_arg)
Oid exprType(const Node *expr)
Oid exprCollation(const Node *expr)
#define IsA(nodeptr, _type_)
const ObjectAddress InvalidObjectAddress
#define ObjectAddressSet(addr, class_id, object_id)
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
TYPCATEGORY TypeCategory(Oid type)
bool IsBinaryCoercible(Oid srctype, Oid targettype)
bool IsPreferredType(TYPCATEGORY category, Oid type)
int parser_errposition(ParseState *pstate, int location)
Oid compatible_oper_opid(List *op, Oid arg1, Oid arg2, bool noError)
IndexStmt * generateClonedIndexStmt(RangeVar *heapRel, Relation source_idx, const AttrMap *attmap, Oid *constraintOid)
@ PARTITION_STRATEGY_HASH
@ REINDEX_OBJECT_DATABASE
PartitionKey RelationGetPartitionKey(Relation rel)
PartitionDesc RelationGetPartitionDesc(Relation rel, bool omit_detached)
FormData_pg_am * Form_pg_am
FormData_pg_attribute * Form_pg_attribute
static void fix_dependencies(ArchiveHandle *AH)
int errdetail_relkind_not_supported(char relkind)
FormData_pg_class * Form_pg_class
Oid get_relation_idx_constraint_oid(Oid relationId, Oid indexId)
void ConstraintSetParentConstraint(Oid childConstrId, Oid parentConstrId, Oid childTableId)
bool ConstraintNameExists(const char *conname, Oid namespaceid)
void recordDependencyOn(const ObjectAddress *depender, const ObjectAddress *referenced, DependencyType behavior)
long deleteDependencyRecordsForClass(Oid classId, Oid objectId, Oid refclassId, char deptype)
FormData_pg_index * Form_pg_index
List * find_all_inheritors(Oid parentrelId, LOCKMODE lockmode, List **numparents)
void StoreSingleInheritance(Oid relationId, Oid parentOid, int32 seqNumber)
bool has_superclass(Oid relationId)
FormData_pg_inherits * Form_pg_inherits
static int list_length(const List *l)
#define forboth(cell1, list1, cell2, list2)
#define list_make1_oid(x1)
static ListCell * list_head(const List *l)
static ListCell * lnext(const List *l, const ListCell *c)
FormData_pg_opclass * Form_pg_opclass
const char * pg_rusage_show(const PGRUsage *ru0)
void pg_rusage_init(PGRUsage *ru0)
size_t strlcpy(char *dst, const char *src, size_t siz)
static bool DatumGetBool(Datum X)
static Datum PointerGetDatum(const void *X)
static Datum ObjectIdGetDatum(Oid X)
static Pointer DatumGetPointer(Datum X)
static Datum Int32GetDatum(int32 X)
#define PROC_IS_AUTOVACUUM
VirtualTransactionId * GetCurrentVirtualXIDs(TransactionId limitXmin, bool excludeXmin0, bool allDbs, int excludeVacuum, int *nvxids)
PGPROC * ProcNumberGetProc(ProcNumber procNumber)
#define PROGRESS_CREATEIDX_PHASE_WAIT_4
#define PROGRESS_CREATEIDX_PHASE_BUILD
#define PROGRESS_CREATEIDX_PARTITIONS_DONE
#define PROGRESS_CREATEIDX_PHASE_WAIT_1
#define PROGRESS_CREATEIDX_COMMAND_CREATE_CONCURRENTLY
#define PROGRESS_CREATEIDX_ACCESS_METHOD_OID
#define PROGRESS_WAITFOR_DONE
#define PROGRESS_CREATEIDX_PHASE_WAIT_3
#define PROGRESS_WAITFOR_TOTAL
#define PROGRESS_CREATEIDX_COMMAND_REINDEX_CONCURRENTLY
#define PROGRESS_CREATEIDX_COMMAND_CREATE
#define PROGRESS_WAITFOR_CURRENT_PID
#define PROGRESS_CREATEIDX_PHASE_WAIT_2
#define PROGRESS_CREATEIDX_PHASE
#define PROGRESS_CREATEIDX_PHASE_VALIDATE_IDXSCAN
#define PROGRESS_CREATEIDX_PHASE_WAIT_5
#define PROGRESS_CREATEIDX_INDEX_OID
#define PROGRESS_CREATEIDX_PARTITIONS_TOTAL
#define PROGRESS_CREATEIDX_COMMAND
char * format_operator(Oid operator_oid)
#define RelationGetRelid(relation)
#define RelationGetDescr(relation)
#define RelationGetRelationName(relation)
#define RELATION_IS_OTHER_TEMP(relation)
#define RelationGetNamespace(relation)
List * RelationGetIndexList(Relation relation)
List * RelationGetIndexPredicate(Relation relation)
List * RelationGetIndexExpressions(Relation relation)
void RelationGetExclusionInfo(Relation indexRelation, Oid **operators, Oid **procs, uint16 **strategies)
Datum transformRelOptions(Datum oldOptions, List *defList, const char *namspace, const char *const validnsps[], bool acceptOidsOff, bool isReset)
bytea * index_reloptions(amoptions_function amoptions, Datum reloptions, bool validate)
#define RelFileNumberIsValid(relnumber)
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
Snapshot GetTransactionSnapshot(void)
void UnregisterSnapshot(Snapshot snapshot)
void PushActiveSnapshot(Snapshot snapshot)
bool ActiveSnapshotSet(void)
Snapshot RegisterSnapshot(Snapshot snapshot)
void PopActiveSnapshot(void)
void relation_close(Relation relation, LOCKMODE lockmode)
Relation relation_open(Oid relationId, LOCKMODE lockmode)
#define HTEqualStrategyNumber
#define BTEqualStrategyNumber
#define ERRCODE_DUPLICATE_OBJECT
struct ErrorContextCallback * previous
void(* callback)(void *arg)
amoptions_function amoptions
amgettuple_function amgettuple
SortByNulls nulls_ordering
uint16 * ii_ExclusionStrats
AttrNumber ii_IndexAttrNumbers[INDEX_MAX_KEYS]
Oid values[FLEXIBLE_ARRAY_MEMBER]
#define FirstLowInvalidHeapAttributeNumber
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCacheLockedCopy1(int cacheId, Datum key1)
HeapTuple SearchSysCache1(int cacheId, Datum key1)
HeapTuple SearchSysCache3(int cacheId, Datum key1, Datum key2, Datum key3)
HeapTuple SearchSysCacheAttName(Oid relid, const char *attname)
Datum SysCacheGetAttrNotNull(int cacheId, HeapTuple tup, AttrNumber attributeNumber)
#define SearchSysCacheExists1(cacheId, key1)
Relation try_table_open(Oid relationId, LOCKMODE lockmode)
void table_close(Relation relation, LOCKMODE lockmode)
Relation table_open(Oid relationId, LOCKMODE lockmode)
TableScanDesc table_beginscan_catalog(Relation relation, int nkeys, struct ScanKeyData *key)
static void table_endscan(TableScanDesc scan)
void CheckTableNotInUse(Relation rel, const char *stmt)
void SetRelationHasSubclass(Oid relationId, bool relhassubclass)
void RangeVarCallbackMaintainsTable(const RangeVar *relation, Oid relId, Oid oldRelId, void *arg)
#define InvalidTransactionId
static FormData_pg_attribute * TupleDescAttr(TupleDesc tupdesc, int i)
void pull_varattnos(Node *node, Index varno, Bitmapset **varattnos)
void CommandCounterIncrement(void)
void PreventInTransactionBlock(bool isTopLevel, const char *stmtType)
void StartTransactionCommand(void)
void CommitTransactionCommand(void)