73 #include "utils/fmgroids.h"
105 bool is_validated,
bool is_local,
int inhcount,
106 bool is_no_inherit,
bool is_internal);
110 bool allow_merge,
bool is_local,
111 bool is_initially_valid,
115 Node *raw_constraint,
219 .attname = {
"tableoid"},
221 .attlen =
sizeof(
Oid),
243 elog(
ERROR,
"invalid system attribute number %d", attno);
244 return SysAtt[-attno - 1];
298 bool shared_relation,
299 bool mapped_relation,
300 bool allow_system_table_mods,
319 if (!allow_system_table_mods &&
324 (
errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
325 errmsg(
"permission denied to create \"%s.%s\"",
327 errdetail(
"System catalog modifications are currently disallowed.")));
336 if (!RELKIND_HAS_TABLESPACE(relkind))
340 if (!RELKIND_HAS_STORAGE(relkind))
341 create_storage =
false;
349 relfilenumber = relid;
388 if (RELKIND_HAS_TABLE_AM(rel->
rd_rel->relkind))
391 relfrozenxid, relminmxid);
392 else if (RELKIND_HAS_STORAGE(rel->
rd_rel->relkind))
403 if (!create_storage && reltablespace !=
InvalidOid)
461 int natts = tupdesc->
natts;
466 (
errcode(ERRCODE_TOO_MANY_COLUMNS),
467 errmsg(
"tables can have at most %d columns",
476 if (relkind != RELKIND_VIEW && relkind != RELKIND_COMPOSITE_TYPE)
478 for (
i = 0;
i < natts;
i++)
484 (
errcode(ERRCODE_DUPLICATE_COLUMN),
485 errmsg(
"column name \"%s\" conflicts with a system column name",
493 for (
i = 1;
i < natts;
i++)
495 for (
j = 0;
j <
i;
j++)
500 (
errcode(ERRCODE_DUPLICATE_COLUMN),
501 errmsg(
"column name \"%s\" specified more than once",
509 for (
i = 0;
i < natts;
i++)
549 Oid atttypid,
Oid attcollation,
550 List *containing_rowtypes,
559 if (att_typtype == TYPTYPE_PSEUDO)
577 (
errcode(ERRCODE_INVALID_TABLE_DEFINITION),
579 errmsg(
"partition key column %s has pseudo-type %s",
583 (
errcode(ERRCODE_INVALID_TABLE_DEFINITION),
584 errmsg(
"column \"%s\" has pseudo-type %s",
588 else if (att_typtype == TYPTYPE_DOMAIN)
597 else if (att_typtype == TYPTYPE_COMPOSITE)
614 (
errcode(ERRCODE_INVALID_TABLE_DEFINITION),
615 errmsg(
"composite type %s cannot be made a member of itself",
618 containing_rowtypes =
lappend_oid(containing_rowtypes, atttypid);
624 for (
i = 0;
i < tupdesc->
natts;
i++)
628 if (attr->attisdropped)
631 attr->atttypid, attr->attcollation,
640 else if (att_typtype == TYPTYPE_RANGE)
668 (
errcode(ERRCODE_INVALID_TABLE_DEFINITION),
670 errmsg(
"no collation was derived for partition key column %s with collatable type %s",
672 errhint(
"Use the COLLATE clause to set the collation explicitly.")));
675 (
errcode(ERRCODE_INVALID_TABLE_DEFINITION),
676 errmsg(
"no collation was derived for column \"%s\" with collatable type %s",
678 errhint(
"Use the COLLATE clause to set the collation explicitly.")));
713 bool close_index =
false;
721 for (
int i = 0;
i < nslots;
i++)
724 while (natts < tupdesc->natts)
731 memset(slot[slotCount]->tts_isnull,
false,
732 slot[slotCount]->tts_tupleDescriptor->natts *
sizeof(
bool));
769 slot[slotCount]->
tts_isnull[Anum_pg_attribute_attstattarget - 1] =
true;
770 slot[slotCount]->
tts_isnull[Anum_pg_attribute_attoptions - 1] =
true;
776 slot[slotCount]->
tts_isnull[Anum_pg_attribute_attacl - 1] =
true;
777 slot[slotCount]->
tts_isnull[Anum_pg_attribute_attfdwoptions - 1] =
true;
778 slot[slotCount]->
tts_isnull[Anum_pg_attribute_attmissingval - 1] =
true;
787 if (slotCount == nslots || natts == tupdesc->
natts - 1)
807 for (
int i = 0;
i < nslots;
i++)
826 int natts = tupdesc->
natts;
840 for (
int i = 0;
i < natts;
i++)
851 attr->attcollation != DEFAULT_COLLATION_OID)
864 if (relkind != RELKIND_VIEW && relkind != RELKIND_COMPOSITE_TYPE)
904 bool nulls[Natts_pg_class];
909 memset(nulls,
false,
sizeof(nulls));
933 values[Anum_pg_class_relforcerowsecurity - 1] =
BoolGetDatum(rd_rel->relforcerowsecurity);
941 if (relacl != (
Datum) 0)
942 values[Anum_pg_class_relacl - 1] = relacl;
944 nulls[Anum_pg_class_relacl - 1] =
true;
945 if (reloptions != (
Datum) 0)
946 values[Anum_pg_class_reloptions - 1] = reloptions;
948 nulls[Anum_pg_class_reloptions - 1] =
true;
951 nulls[Anum_pg_class_relpartbound - 1] =
true;
987 new_rel_reltup = new_rel_desc->
rd_rel;
990 new_rel_reltup->relpages = 0;
991 new_rel_reltup->reltuples = -1;
992 new_rel_reltup->relallvisible = 0;
995 if (relkind == RELKIND_SEQUENCE)
997 new_rel_reltup->relpages = 1;
998 new_rel_reltup->reltuples = 1;
1001 new_rel_reltup->relfrozenxid = relfrozenxid;
1002 new_rel_reltup->relminmxid = relminmxid;
1003 new_rel_reltup->relowner = relowner;
1004 new_rel_reltup->reltype = new_type_oid;
1005 new_rel_reltup->reloftype = reloftype;
1008 new_rel_reltup->relispartition =
false;
1011 new_rel_desc->
rd_att->
tdtypeid = new_type_oid ? new_type_oid : RECORDOID;
1016 relacl, reloptions);
1044 TYPCATEGORY_COMPOSITE,
1063 TYPSTORAGE_EXTENDED,
1114 List *cooked_constraints,
1116 char relpersistence,
1117 bool shared_relation,
1118 bool mapped_relation,
1122 bool allow_system_table_mods,
1161 (
errcode(ERRCODE_DUPLICATE_TABLE),
1179 errhint(
"A relation has an associated type of the same name, "
1180 "so you must use a name that doesn't conflict "
1181 "with any existing type.")));
1187 if (shared_relation && reltablespace != GLOBALTABLESPACE_OID)
1188 elog(
ERROR,
"shared relations must be placed in pg_global tablespace");
1205 Assert(relkind != RELKIND_INDEX);
1206 Assert(relkind != RELKIND_PARTITIONED_INDEX);
1208 if (relkind == RELKIND_TOASTVALUE)
1218 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1219 errmsg(
"toast relfilenumber value not set when in binary upgrade mode")));
1229 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1230 errmsg(
"pg_class heap OID value not set when in binary upgrade mode")));
1235 if (RELKIND_HAS_STORAGE(relkind))
1239 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1240 errmsg(
"relfilenumber value not set when in binary upgrade mode")));
1267 case RELKIND_RELATION:
1269 case RELKIND_MATVIEW:
1270 case RELKIND_FOREIGN_TABLE:
1271 case RELKIND_PARTITIONED_TABLE:
1275 case RELKIND_SEQUENCE:
1307 allow_system_table_mods,
1314 new_rel_desc->
rd_rel->relrewrite = relrewrite;
1321 if (!(relkind == RELKIND_SEQUENCE ||
1322 relkind == RELKIND_TOASTVALUE ||
1323 relkind == RELKIND_INDEX ||
1324 relkind == RELKIND_PARTITIONED_INDEX))
1352 new_type_oid = new_type_addr.
objectId;
1354 *typaddress = new_type_addr;
1377 F_ARRAY_SUBSCRIPT_HANDLER,
1386 TYPSTORAGE_EXTENDED,
1392 pfree(relarrayname);
1398 Assert(typaddress == NULL);
1442 if (relkind != RELKIND_COMPOSITE_TYPE &&
1443 relkind != RELKIND_TOASTVALUE &&
1476 if (RELKIND_HAS_TABLE_AM(relkind) && relkind != RELKIND_TOASTVALUE)
1534 Anum_pg_inherits_inhrelid,
1567 elog(
ERROR,
"cache lookup failed for relation %u", relid);
1598 Anum_pg_attribute_attrelid,
1635 Anum_pg_attribute_attrelid,
1639 Anum_pg_attribute_attnum,
1671 Datum valuesAtt[Natts_pg_attribute] = {0};
1672 bool nullsAtt[Natts_pg_attribute] = {0};
1673 bool replacesAtt[Natts_pg_attribute] = {0};
1689 elog(
ERROR,
"cache lookup failed for attribute %d of relation %u",
1694 attStruct->attisdropped =
true;
1707 attStruct->attnotnull =
false;
1710 attStruct->attgenerated =
'\0';
1715 snprintf(newattname,
sizeof(newattname),
1716 "........pg.dropped.%d........",
attnum);
1717 namestrcpy(&(attStruct->attname), newattname);
1720 attStruct->atthasmissing =
false;
1721 nullsAtt[Anum_pg_attribute_attmissingval - 1] =
true;
1722 replacesAtt[Anum_pg_attribute_attmissingval - 1] =
true;
1728 nullsAtt[Anum_pg_attribute_attstattarget - 1] =
true;
1729 replacesAtt[Anum_pg_attribute_attstattarget - 1] =
true;
1730 nullsAtt[Anum_pg_attribute_attacl - 1] =
true;
1731 replacesAtt[Anum_pg_attribute_attacl - 1] =
true;
1732 nullsAtt[Anum_pg_attribute_attoptions - 1] =
true;
1733 replacesAtt[Anum_pg_attribute_attoptions - 1] =
true;
1734 nullsAtt[Anum_pg_attribute_attfdwoptions - 1] =
true;
1735 replacesAtt[Anum_pg_attribute_attfdwoptions - 1] =
true;
1738 valuesAtt, nullsAtt, replacesAtt);
1784 elog(
ERROR,
"cache lookup failed for relation %u", relid);
1800 if (
OidIsValid(defaultPartOid) && relid != defaultPartOid)
1829 if (rel->
rd_rel->relkind == RELKIND_FOREIGN_TABLE)
1838 elog(
ERROR,
"cache lookup failed for foreign table %u", relid);
1849 if (rel->
rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
1856 if (relid == defaultPartOid)
1862 if (RELKIND_HAS_STORAGE(rel->
rd_rel->relkind))
1921 if (
OidIsValid(defaultPartOid) && relid != defaultPartOid)
1951 Datum repl_val[Natts_pg_attribute];
1952 bool repl_null[Natts_pg_attribute];
1953 bool repl_repl[Natts_pg_attribute];
1958 memset(repl_val, 0,
sizeof(repl_val));
1959 memset(repl_null,
false,
sizeof(repl_null));
1960 memset(repl_repl,
false,
sizeof(repl_repl));
1962 repl_val[Anum_pg_attribute_atthasmissing - 1] =
BoolGetDatum(
false);
1963 repl_null[Anum_pg_attribute_attmissingval - 1] =
true;
1965 repl_repl[Anum_pg_attribute_atthasmissing - 1] =
true;
1966 repl_repl[Anum_pg_attribute_attmissingval - 1] =
true;
1979 elog(
ERROR,
"cache lookup failed for attribute %d of relation %u",
1985 if (attrtuple->atthasmissing)
1988 repl_val, repl_null, repl_repl);
2015 Datum valuesAtt[Natts_pg_attribute] = {0};
2016 bool nullsAtt[Natts_pg_attribute] = {0};
2017 bool replacesAtt[Natts_pg_attribute] = {0};
2029 if (tablerel->
rd_rel->relkind != RELKIND_RELATION)
2039 elog(
ERROR,
"cache lookup failed for attribute %s of relation %u",
2050 valuesAtt[Anum_pg_attribute_atthasmissing - 1] =
BoolGetDatum(
true);
2051 replacesAtt[Anum_pg_attribute_atthasmissing - 1] =
true;
2052 valuesAtt[Anum_pg_attribute_attmissingval - 1] = missingval;
2053 replacesAtt[Anum_pg_attribute_attmissingval - 1] =
true;
2056 valuesAtt, nullsAtt, replacesAtt);
2075 bool is_validated,
bool is_local,
int inhcount,
2076 bool is_no_inherit,
bool is_internal)
2105 foreach(vl, varList)
2110 for (
j = 0;
j <
i;
j++)
2125 if (is_no_inherit &&
2126 rel->
rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
2128 (
errcode(ERRCODE_INVALID_TABLE_DEFINITION),
2129 errmsg(
"cannot add NO INHERIT constraint to partitioned table \"%s\"",
2190 if (cooked_constraints ==
NIL)
2200 foreach(lc, cooked_constraints)
2208 is_internal,
false);
2219 elog(
ERROR,
"unrecognized constraint type: %d",
2260 List *newColDefaults,
2261 List *newConstraints,
2265 const char *queryString)
2267 List *cookedConstraints =
NIL;
2282 oldconstr = tupleDesc->
constr;
2311 atp->atttypid, atp->atttypmod,
2328 (!colDef->generated &&
2334 if (colDef->missingMode &&
2336 colDef->missingMode =
false;
2339 colDef->missingMode);
2344 cooked->
name = NULL;
2345 cooked->
attnum = colDef->attnum;
2346 cooked->
expr = expr;
2349 cooked->
inhcount = is_local ? 0 : 1;
2351 cookedConstraints =
lappend(cookedConstraints, cooked);
2357 numchecks = numoldchecks;
2367 if (cdef->raw_expr != NULL)
2369 Assert(cdef->cooked_expr == NULL);
2380 Assert(cdef->cooked_expr != NULL);
2392 if (cdef->conname != NULL)
2394 ccname = cdef->conname;
2399 if (strcmp(chkname, ccname) == 0)
2402 errmsg(
"check constraint \"%s\" already exists",
2407 checknames =
lappend(checknames, ccname);
2416 allow_merge, is_local,
2417 cdef->initially_valid,
2418 cdef->is_no_inherit))
2458 checknames =
lappend(checknames, ccname);
2465 StoreRelCheck(rel, ccname, expr, cdef->initially_valid, is_local,
2466 is_local ? 0 : 1, cdef->is_no_inherit, is_internal);
2472 cooked->
conoid = constrOid;
2473 cooked->
name = ccname;
2475 cooked->
expr = expr;
2478 cooked->
inhcount = is_local ? 0 : 1;
2480 cookedConstraints =
lappend(cookedConstraints, cooked);
2493 return cookedConstraints;
2508 bool allow_merge,
bool is_local,
2509 bool is_initially_valid,
2524 Anum_pg_constraint_conrelid,
2528 Anum_pg_constraint_contypid,
2532 Anum_pg_constraint_conname,
2545 if (con->contype == CONSTRAINT_CHECK)
2551 Anum_pg_constraint_conbin,
2552 conDesc->
rd_att, &isnull);
2568 if (is_local && !con->conislocal && !rel->
rd_rel->relispartition)
2571 if (!found || !allow_merge)
2574 errmsg(
"constraint \"%s\" for relation \"%s\" already exists",
2578 if (con->connoinherit)
2580 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2581 errmsg(
"constraint \"%s\" conflicts with non-inherited constraint on relation \"%s\"",
2589 if (con->coninhcount > 0 && is_no_inherit)
2591 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2592 errmsg(
"constraint \"%s\" conflicts with inherited constraint on relation \"%s\"",
2599 if (is_initially_valid && !con->convalidated)
2601 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2602 errmsg(
"constraint \"%s\" conflicts with NOT VALID constraint on relation \"%s\"",
2607 (
errmsg(
"merging constraint \"%s\" with inherited definition",
2618 if (rel->
rd_rel->relispartition)
2620 con->coninhcount = 1;
2621 con->conislocal =
false;
2626 con->conislocal =
true;
2630 if (con->coninhcount < 0)
2632 errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
2633 errmsg(
"too many inheritance parents"));
2639 con->connoinherit =
true;
2672 elog(
ERROR,
"cache lookup failed for relation %u",
2676 if (relStruct->relchecks != numchecks)
2678 relStruct->relchecks = numchecks;
2716 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2717 errmsg(
"cannot use generated column \"%s\" in column generation expression",
2719 errdetail(
"A generated column cannot reference another generated column."),
2724 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2725 errmsg(
"cannot use whole-row variable in column generation expression"),
2726 errdetail(
"This would cause the generated column to depend on its own value."),
2765 Assert(raw_default != NULL);
2780 (
errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
2781 errmsg(
"generation expression is not immutable")));
2802 atttypid, atttypmod,
2808 (
errcode(ERRCODE_DATATYPE_MISMATCH),
2809 errmsg(
"column \"%s\" is of type %s"
2810 " but default expression is of type %s",
2814 errhint(
"You will need to rewrite or cast the expression.")));
2834 Node *raw_constraint,
2860 (
errcode(ERRCODE_INVALID_COLUMN_REFERENCE),
2861 errmsg(
"only table \"%s\" can be referenced in check constraint",
2883 Anum_pg_statistic_starelid,
2888 true, NULL, 1,
key);
2899 statform->starelid = torelid;
2902 if (indstate == NULL)
2912 if (indstate != NULL)
2935 Anum_pg_statistic_starelid,
2944 Anum_pg_statistic_staattnum,
3002 index_build(heapRelation, currentIndex, indexInfo,
true,
false);
3025 foreach(cell, relids)
3031 relations =
lappend(relations, rel);
3038 foreach(cell, relations)
3068 if (rel->
rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
3078 toastrelid = rel->
rd_rel->reltoastrelid;
3118 foreach(cell, relations)
3122 if (rel->
rd_rel->relhastriggers ||
3123 rel->
rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
3138 if (dependents ==
NIL)
3155 foreach(cell2, dependents)
3166 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3167 errmsg(
"unsupported ON COMMIT and foreign key combination"),
3168 errdetail(
"Table \"%s\" references \"%s\", but they do not have the same ON COMMIT setting.",
3172 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3173 errmsg(
"cannot truncate a table referenced in a foreign key constraint"),
3174 errdetail(
"Table \"%s\" references \"%s\".",
3176 errhint(
"Truncate table \"%s\" at the same time, "
3177 "or use TRUNCATE ... CASCADE.",
3231 if (con->contype != CONSTRAINT_FOREIGN)
3246 parent_cons =
lappend_oid(parent_cons, con->conparentid);
3265 foreach(cell, parent_cons)
3270 Anum_pg_constraint_oid,
3275 true, NULL, 1, &
key);
3338 Datum partexprDatum;
3342 bool nulls[Natts_pg_partitioned_table] = {0};
3347 Assert(rel->
rd_rel->relkind == RELKIND_PARTITIONED_TABLE);
3364 partexprDatum = (
Datum) 0;
3370 nulls[Anum_pg_partitioned_table_partexprs - 1] =
true;
3379 values[Anum_pg_partitioned_table_partexprs - 1] = partexprDatum;
3391 for (
i = 0;
i < partnatts;
i++)
3398 partcollation[
i] != DEFAULT_COLLATION_OID)
3414 for (
i = 0;
i < partnatts;
i++)
3416 if (partattrs[
i] == 0)
3460 elog(
ERROR,
"cache lookup failed for partition key of relation %u",
3487 Datum new_val[Natts_pg_class];
3488 bool new_null[Natts_pg_class],
3489 new_repl[Natts_pg_class];
3497 elog(
ERROR,
"cache lookup failed for relation %u",
3500 #ifdef USE_ASSERT_CHECKING
3506 Assert(!classForm->relispartition);
3514 memset(new_val, 0,
sizeof(new_val));
3515 memset(new_null,
false,
sizeof(new_null));
3516 memset(new_repl,
false,
sizeof(new_repl));
3518 new_null[Anum_pg_class_relpartbound - 1] =
false;
3519 new_repl[Anum_pg_class_relpartbound - 1] =
true;
3521 new_val, new_null, new_repl);
3529 if (rel->
rd_rel->relkind == RELKIND_RELATION && rel->
rd_rel->relhassubclass)
void recordDependencyOnNewAcl(Oid classId, Oid objectId, int32 objsubId, Oid ownerId, Acl *acl)
Acl * get_user_default_acl(ObjectType objtype, Oid ownerId, Oid nsp_oid)
static Datum values[MAXATTR]
#define CStringGetTextDatum(s)
#define TextDatumGetCString(d)
#define Assert(condition)
TransactionId MultiXactId
#define OidIsValid(objectId)
bool IsToastNamespace(Oid namespaceId)
RelFileNumber GetNewRelFileNumber(Oid reltablespace, Relation pg_class, char relpersistence)
bool IsCatalogNamespace(Oid namespaceId)
bool contain_volatile_functions_after_planning(Expr *expr)
bool contain_mutable_functions_after_planning(Expr *expr)
void record_object_address_dependencies(const ObjectAddress *depender, ObjectAddresses *referenced, DependencyType behavior)
void recordDependencyOnSingleRelExpr(const ObjectAddress *depender, Node *expr, Oid relId, DependencyType behavior, DependencyType self_behavior, bool reverse_self)
ObjectAddresses * new_object_addresses(void)
void add_exact_object_address(const ObjectAddress *object, ObjectAddresses *addrs)
void free_object_addresses(ObjectAddresses *addrs)
int errdetail(const char *fmt,...)
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
bool equal(const void *a, const void *b)
TupleTableSlot * ExecStoreVirtualTuple(TupleTableSlot *slot)
void ExecDropSingleTupleTableSlot(TupleTableSlot *slot)
const TupleTableSlotOps TTSOpsHeapTuple
TupleTableSlot * MakeSingleTupleTableSlot(TupleDesc tupdesc, const TupleTableSlotOps *tts_ops)
#define OidFunctionCall3(functionId, arg1, arg2, arg3)
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)
void RemoveAttributeById(Oid relid, AttrNumber attnum)
static Oid StoreRelCheck(Relation rel, const char *ccname, Node *expr, bool is_validated, bool is_local, int inhcount, bool is_no_inherit, bool is_internal)
void RelationClearMissing(Relation rel)
static bool MergeWithExistingConstraint(Relation rel, const char *ccname, Node *expr, bool allow_merge, bool is_local, bool is_initially_valid, bool is_no_inherit)
void SetAttrMissing(Oid relid, char *attname, char *value)
void DeleteSystemAttributeTuples(Oid relid)
void StorePartitionKey(Relation rel, char strategy, int16 partnatts, AttrNumber *partattrs, List *partexprs, Oid *partopclass, Oid *partcollation)
static void StoreConstraints(Relation rel, List *cooked_constraints, bool is_internal)
static void AddNewAttributeTuples(Oid new_rel_oid, TupleDesc tupdesc, char relkind)
List * heap_truncate_find_FKs(List *relationIds)
void DeleteRelationTuple(Oid relid)
static void RelationTruncateIndexes(Relation heapRelation)
RelFileNumber binary_upgrade_next_heap_pg_class_relfilenumber
static void AddNewRelationTuple(Relation pg_class_desc, Relation new_rel_desc, Oid new_rel_oid, Oid new_type_oid, Oid reloftype, Oid relowner, char relkind, TransactionId relfrozenxid, TransactionId relminmxid, Datum relacl, Datum reloptions)
void DeleteAttributeTuples(Oid relid)
void RemoveStatistics(Oid relid, AttrNumber attnum)
static const FormData_pg_attribute a4
RelFileNumber binary_upgrade_next_toast_pg_class_relfilenumber
static ObjectAddress AddNewRelationType(const char *typeName, Oid typeNamespace, Oid new_rel_oid, char new_rel_kind, Oid ownerid, Oid new_row_type, Oid new_array_type)
static const FormData_pg_attribute a1
Oid heap_create_with_catalog(const char *relname, Oid relnamespace, Oid reltablespace, Oid relid, Oid reltypeid, Oid reloftypeid, Oid ownerid, Oid accessmtd, TupleDesc tupdesc, List *cooked_constraints, char relkind, char relpersistence, bool shared_relation, bool mapped_relation, OnCommitAction oncommit, Datum reloptions, bool use_user_acl, bool allow_system_table_mods, bool is_internal, Oid relrewrite, ObjectAddress *typaddress)
void heap_truncate(List *relids)
static const FormData_pg_attribute *const SysAtt[]
void CheckAttributeType(const char *attname, Oid atttypid, Oid attcollation, List *containing_rowtypes, int flags)
const FormData_pg_attribute * SystemAttributeDefinition(AttrNumber attno)
void CopyStatistics(Oid fromrelid, Oid torelid)
Node * cookDefault(ParseState *pstate, Node *raw_default, Oid atttypid, int32 atttypmod, const char *attname, char attgenerated)
void heap_truncate_check_FKs(List *relations, bool tempTables)
static const FormData_pg_attribute a6
static bool check_nested_generated_walker(Node *node, void *context)
static void SetRelationNumChecks(Relation rel, int numchecks)
static const FormData_pg_attribute a3
static void RelationRemoveInheritance(Oid relid)
static const FormData_pg_attribute a2
void StorePartitionBound(Relation rel, Relation parent, PartitionBoundSpec *bound)
void heap_drop_with_catalog(Oid relid)
void InsertPgClassTuple(Relation pg_class_desc, Relation new_rel_desc, Oid new_rel_oid, Datum relacl, Datum reloptions)
void CheckAttributeNamesTypes(TupleDesc tupdesc, char relkind, int flags)
static void check_nested_generated(ParseState *pstate, Node *node)
Oid binary_upgrade_next_toast_pg_class_oid
void InsertPgAttributeTuples(Relation pg_attribute_rel, TupleDesc tupdesc, Oid new_rel_oid, const FormExtraData_pg_attribute tupdesc_extra[], CatalogIndexState indstate)
void heap_truncate_one_rel(Relation rel)
void RemovePartitionKeyByRelId(Oid relid)
Oid binary_upgrade_next_heap_pg_class_oid
const FormData_pg_attribute * SystemAttributeByName(const char *attname)
static const FormData_pg_attribute a5
Relation heap_create(const char *relname, Oid relnamespace, Oid reltablespace, Oid relid, RelFileNumber relfilenumber, Oid accessmtd, TupleDesc tupDesc, char relkind, char relpersistence, bool shared_relation, bool mapped_relation, bool allow_system_table_mods, TransactionId *relfrozenxid, MultiXactId *relminmxid, bool create_storage)
List * AddRelationNewConstraints(Relation rel, List *newColDefaults, List *newConstraints, bool allow_merge, bool is_local, bool is_internal, const char *queryString)
static Node * cookConstraint(ParseState *pstate, Node *raw_constraint, char *relname)
#define CHKATYPE_ANYRECORD
#define CHKATYPE_ANYARRAY
#define CHKATYPE_IS_PARTKEY
HeapTuple heap_modify_tuple(HeapTuple tuple, TupleDesc tupleDesc, const Datum *replValues, const bool *replIsnull, const bool *doReplace)
HeapTuple heap_copytuple(HeapTuple tuple)
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
void heap_freetuple(HeapTuple htup)
#define HeapTupleIsValid(tuple)
#define MaxHeapAttributeNumber
static Datum fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
IndexInfo * BuildDummyIndexInfo(Relation index)
void index_build(Relation heapRelation, Relation indexRelation, IndexInfo *indexInfo, bool isreindex, bool parallel)
void index_close(Relation relation, LOCKMODE lockmode)
Relation index_open(Oid relationId, LOCKMODE lockmode)
void CatalogTupleUpdate(Relation heapRel, ItemPointer otid, HeapTuple tup)
void CatalogTuplesMultiInsertWithInfo(Relation heapRel, TupleTableSlot **slot, int ntuples, CatalogIndexState indstate)
void CatalogTupleInsertWithInfo(Relation heapRel, HeapTuple tup, CatalogIndexState indstate)
void CatalogCloseIndexes(CatalogIndexState indstate)
void CatalogTupleInsert(Relation heapRel, HeapTuple tup)
CatalogIndexState CatalogOpenIndexes(Relation heapRel)
void CatalogTupleDelete(Relation heapRel, ItemPointer tid)
#define MAX_CATALOG_MULTI_INSERT_BYTES
int2vector * buildint2vector(const int16 *int2s, int n)
void CacheInvalidateRelcache(Relation relation)
void CacheInvalidateRelcacheByRelid(Oid relid)
struct ItemPointerData ItemPointerData
void list_sort(List *list, list_sort_comparator cmp)
List * list_union(const List *list1, const List *list2)
List * lappend(List *list, void *datum)
List * lappend_oid(List *list, Oid datum)
List * list_copy(const List *oldlist)
void list_deduplicate_oid(List *list)
int list_oid_cmp(const ListCell *p1, const ListCell *p2)
void list_free(List *list)
bool list_member_oid(const List *list, Oid datum)
List * list_append_unique_oid(List *list, Oid datum)
List * list_delete_last(List *list)
void LockRelationOid(Oid relid, LOCKMODE lockmode)
#define AccessExclusiveLock
Oid get_range_subtype(Oid rangeOid)
Oid get_element_type(Oid typid)
char get_attgenerated(Oid relid, AttrNumber attnum)
char * get_namespace_name(Oid nspid)
char * get_rel_name(Oid relid)
Oid get_range_collation(Oid rangeOid)
bool type_is_collatable(Oid typid)
Oid get_typ_typrelid(Oid typid)
char get_typtype(Oid typid)
Oid getBaseType(Oid typid)
Oid get_relname_relid(const char *relname, Oid relnamespace)
char * get_attname(Oid relid, AttrNumber attnum, bool missing_ok)
void pfree(void *pointer)
#define IsBootstrapProcessingMode()
#define IsNormalProcessingMode()
#define InvalidMultiXactId
void namestrcpy(Name name, const char *str)
Oid exprType(const Node *expr)
#define expression_tree_walker(n, w, c)
#define IsA(nodeptr, _type_)
#define castNode(_type_, nodeptr)
#define InvokeObjectPostCreateHookArg(classId, objectId, subId, is_internal)
#define ObjectAddressSet(addr, class_id, object_id)
#define ObjectAddressSubSet(addr, class_id, object_id, object_sub_id)
oidvector * buildoidvector(const Oid *oids, int n)
char * nodeToString(const void *obj)
Node * coerce_to_target_type(ParseState *pstate, Node *expr, Oid exprtype, Oid targettype, int32 targettypmod, CoercionContext ccontext, CoercionForm cformat, int location)
Node * coerce_to_boolean(ParseState *pstate, Node *node, const char *constructName)
void assign_expr_collations(ParseState *pstate, Node *expr)
Node * transformExpr(ParseState *pstate, Node *expr, ParseExprKind exprKind)
int parser_errposition(ParseState *pstate, int location)
ParseState * make_parsestate(ParseState *parentParseState)
@ EXPR_KIND_COLUMN_DEFAULT
@ EXPR_KIND_GENERATED_COLUMN
@ EXPR_KIND_CHECK_CONSTRAINT
ParseNamespaceItem * addRangeTableEntryForRelation(ParseState *pstate, Relation rel, int lockmode, Alias *alias, bool inh, bool inFromCl)
void addNSItemToQuery(ParseState *pstate, ParseNamespaceItem *nsitem, bool addToJoinList, bool addToRelNameSpace, bool addToVarNameSpace)
#define rt_fetch(rangetable_index, rangetable)
PartitionDesc RelationGetPartitionDesc(Relation rel, bool omit_detached)
Oid get_default_oid_from_partdesc(PartitionDesc partdesc)
void update_default_partition_oid(Oid parentId, Oid defaultPartId)
Oid get_default_partition_oid(Oid parentId)
Oid get_partition_parent(Oid relid, bool even_if_detached)
Oid StoreAttrDefault(Relation rel, AttrNumber attnum, Node *expr, bool is_internal, bool add_column_mode)
FormData_pg_attribute * Form_pg_attribute
FormData_pg_class * Form_pg_class
char * ChooseConstraintName(const char *name1, const char *name2, const char *label, Oid namespaceid, List *others)
Oid CreateConstraintEntry(const char *constraintName, Oid constraintNamespace, char constraintType, bool isDeferrable, bool isDeferred, bool isValidated, Oid parentConstrId, Oid relId, const int16 *constraintKey, int constraintNKeys, int constraintNTotalKeys, Oid domainId, Oid indexRelId, Oid foreignRelId, const int16 *foreignKey, const Oid *pfEqOp, const Oid *ppEqOp, const Oid *ffEqOp, int foreignNKeys, char foreignUpdateType, char foreignDeleteType, const int16 *fkDeleteSetCols, int numFkDeleteSetCols, char foreignMatchType, const Oid *exclOp, Node *conExpr, const char *conBin, bool conIsLocal, int conInhCount, bool conNoInherit, bool conPeriod, bool is_internal)
FormData_pg_constraint * Form_pg_constraint
void recordDependencyOn(const ObjectAddress *depender, const ObjectAddress *referenced, DependencyType behavior)
void recordDependencyOnCurrentExtension(const ObjectAddress *object, bool isReplace)
static int list_length(const List *l)
#define list_make1_oid(x1)
#define foreach_ptr(type, var, lst)
#define foreach_node(type, var, lst)
void recordDependencyOnOwner(Oid classId, Oid objectId, Oid owner)
void recordDependencyOnTablespace(Oid classId, Oid objectId, Oid tablespace)
FormData_pg_statistic * Form_pg_statistic
void RemoveSubscriptionRel(Oid subid, Oid relid)
ObjectAddress TypeCreate(Oid newTypeOid, const char *typeName, Oid typeNamespace, Oid relationOid, char relationKind, Oid ownerId, int16 internalSize, char typeType, char typeCategory, bool typePreferred, char typDelim, Oid inputProcedure, Oid outputProcedure, Oid receiveProcedure, Oid sendProcedure, Oid typmodinProcedure, Oid typmodoutProcedure, Oid analyzeProcedure, Oid subscriptProcedure, Oid elementType, bool isImplicitArray, Oid arrayType, Oid baseType, const char *defaultTypeValue, char *defaultTypeBin, bool passedByValue, char alignment, char storage, int32 typeMod, int32 typNDims, bool typeNotNull, Oid typeCollation)
char * makeArrayTypeName(const char *typeName, Oid typeNamespace)
bool moveArrayTypeName(Oid typeOid, const char *typeName, Oid typeNamespace)
void pgstat_create_relation(Relation rel)
void pgstat_drop_relation(Relation rel)
void check_stack_depth(void)
static Datum PointerGetDatum(const void *X)
static Datum Float4GetDatum(float4 X)
static Datum TransactionIdGetDatum(TransactionId X)
static Datum Int16GetDatum(int16 X)
static Datum MultiXactIdGetDatum(MultiXactId X)
static Datum BoolGetDatum(bool X)
static Datum ObjectIdGetDatum(Oid X)
static Datum NameGetDatum(const NameData *X)
static Datum CStringGetDatum(const char *X)
static Datum Int32GetDatum(int32 X)
static Datum CharGetDatum(char X)
void CheckTableForSerializableConflictIn(Relation relation)
void * stringToNode(const char *str)
#define RelationGetRelid(relation)
#define RelationGetDescr(relation)
#define RelationGetNumberOfAttributes(relation)
#define RelationGetRelationName(relation)
#define RelationGetNamespace(relation)
List * RelationGetIndexList(Relation relation)
void RelationForgetRelation(Oid rid)
Relation RelationBuildLocalRelation(const char *relname, Oid relnamespace, TupleDesc tupDesc, Oid relid, Oid accessmtd, RelFileNumber relfilenumber, Oid reltablespace, bool shared_relation, bool mapped_relation, char relpersistence, char relkind)
#define InvalidRelFileNumber
#define RelFileNumberIsValid(relnumber)
void ScanKeyInit(ScanKey entry, AttrNumber attributeNumber, StrategyNumber strategy, RegProcedure procedure, Datum argument)
void relation_close(Relation relation, LOCKMODE lockmode)
Relation relation_open(Oid relationId, LOCKMODE lockmode)
SMgrRelation RelationCreateStorage(RelFileLocator rlocator, char relpersistence, bool register_delete)
void RelationDropStorage(Relation rel)
void RelationTruncate(Relation rel, BlockNumber nblocks)
#define BTEqualStrategyNumber
#define BTLessEqualStrategyNumber
#define ERRCODE_DUPLICATE_OBJECT
const char * p_sourcetext
RelFileLocator rd_locator
#define MinTransactionIdAttributeNumber
#define MaxCommandIdAttributeNumber
#define MaxTransactionIdAttributeNumber
#define TableOidAttributeNumber
#define SelfItemPointerAttributeNumber
#define MinCommandIdAttributeNumber
void ReleaseSysCache(HeapTuple tuple)
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Datum SysCacheGetAttr(int cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
HeapTuple SearchSysCache2(int cacheId, Datum key1, Datum key2)
HeapTuple SearchSysCacheAttName(Oid relid, const char *attname)
#define SearchSysCacheCopy1(cacheId, key1)
#define SearchSysCacheCopy2(cacheId, key1, key2)
#define GetSysCacheOid2(cacheId, oidcol, key1, key2)
void table_close(Relation relation, LOCKMODE lockmode)
Relation table_open(Oid relationId, LOCKMODE lockmode)
static void table_relation_set_new_filelocator(Relation rel, const RelFileLocator *newrlocator, char persistence, TransactionId *freezeXid, MultiXactId *minmulti)
static void table_relation_nontransactional_truncate(Relation rel)
void CheckTableNotInUse(Relation rel, const char *stmt)
void remove_on_commit_action(Oid relid)
void register_on_commit_action(Oid relid, OnCommitAction action)
#define InvalidTransactionId
void FreeTupleDesc(TupleDesc tupdesc)
TupleDesc CreateTupleDesc(int natts, Form_pg_attribute *attrs)
#define TupleDescAttr(tupdesc, i)
static TupleTableSlot * ExecClearTuple(TupleTableSlot *slot)
Oid AssignTypeArrayOid(void)
List * pull_var_clause(Node *node, int flags)
bool contain_var_clause(Node *node)
void CommandCounterIncrement(void)