Skip to content

Commit 4f14c86

Browse files
Reverting previous commit, pending investigation
of sporadic seg faults from various build farm members.
1 parent b577a57 commit 4f14c86

File tree

6 files changed

+0
-204
lines changed

6 files changed

+0
-204
lines changed

doc/src/sgml/ref/alter_table.sgml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
4646
ALTER [ COLUMN ] <replaceable class="PARAMETER">column_name</replaceable> SET STORAGE { PLAIN | EXTERNAL | EXTENDED | MAIN }
4747
ADD <replaceable class="PARAMETER">table_constraint</replaceable> [ NOT VALID ]
4848
ADD <replaceable class="PARAMETER">table_constraint_using_index</replaceable>
49-
ALTER CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> [ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]
5049
VALIDATE CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable>
5150
DROP CONSTRAINT [ IF EXISTS ] <replaceable class="PARAMETER">constraint_name</replaceable> [ RESTRICT | CASCADE ]
5251
DISABLE TRIGGER [ <replaceable class="PARAMETER">trigger_name</replaceable> | ALL | USER ]
@@ -317,16 +316,6 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
317316
</listitem>
318317
</varlistentry>
319318

320-
<varlistentry>
321-
<term><literal>ALTER CONSTRAINT</literal></term>
322-
<listitem>
323-
<para>
324-
This form alters the attributes of a constraint that was previously
325-
created. Currently only foreign key constraints may be altered.
326-
</para>
327-
</listitem>
328-
</varlistentry>
329-
330319
<varlistentry>
331320
<term><literal>VALIDATE CONSTRAINT</literal></term>
332321
<listitem>

src/backend/commands/tablecmds.c

Lines changed: 0 additions & 138 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,6 @@ static void AlterIndexNamespaces(Relation classRel, Relation rel,
275275
static void AlterSeqNamespaces(Relation classRel, Relation rel,
276276
Oid oldNspOid, Oid newNspOid, ObjectAddresses *objsMoved,
277277
LOCKMODE lockmode);
278-
static void ATExecAlterConstraint(Relation rel, AlterTableCmd *cmd,
279-
bool recurse, bool recursing, LOCKMODE lockmode);
280278
static void ATExecValidateConstraint(Relation rel, char *constrName,
281279
bool recurse, bool recursing, LOCKMODE lockmode);
282280
static int transformColumnNameList(Oid relId, List *colList,
@@ -2888,7 +2886,6 @@ AlterTableGetLockLevel(List *cmds)
28882886
case AT_SetOptions:
28892887
case AT_ResetOptions:
28902888
case AT_SetStorage:
2891-
case AT_AlterConstraint:
28922889
case AT_ValidateConstraint:
28932890
cmd_lockmode = ShareUpdateExclusiveLock;
28942891
break;
@@ -3127,9 +3124,6 @@ ATPrepCmd(List **wqueue, Relation rel, AlterTableCmd *cmd,
31273124
ATPrepAddInherit(rel);
31283125
pass = AT_PASS_MISC;
31293126
break;
3130-
case AT_AlterConstraint: /* ALTER CONSTRAINT */
3131-
ATSimplePermissions(rel, ATT_TABLE);
3132-
break;
31333127
case AT_ValidateConstraint: /* VALIDATE CONSTRAINT */
31343128
ATSimplePermissions(rel, ATT_TABLE);
31353129
/* Recursion occurs during execution phase */
@@ -3308,9 +3302,6 @@ ATExecCmd(List **wqueue, AlteredTableInfo *tab, Relation rel,
33083302
case AT_AddIndexConstraint: /* ADD CONSTRAINT USING INDEX */
33093303
ATExecAddIndexConstraint(tab, rel, (IndexStmt *) cmd->def, lockmode);
33103304
break;
3311-
case AT_AlterConstraint: /* ALTER CONSTRAINT */
3312-
ATExecAlterConstraint(rel, cmd, false, false, lockmode);
3313-
break;
33143305
case AT_ValidateConstraint: /* VALIDATE CONSTRAINT */
33153306
ATExecValidateConstraint(rel, cmd->name, false, false, lockmode);
33163307
break;
@@ -6182,135 +6173,6 @@ ATAddForeignKeyConstraint(AlteredTableInfo *tab, Relation rel,
61826173
heap_close(pkrel, NoLock);
61836174
}
61846175

6185-
/*
6186-
* ALTER TABLE ALTER CONSTRAINT
6187-
*
6188-
* Update the attributes of a constraint.
6189-
*
6190-
* Currently only works for Foreign Key constraints.
6191-
* Foreign keys do not inherit, so we purposely ignore the
6192-
* recursion bit here, but we keep the API the same for when
6193-
* other constraint types are supported.
6194-
*/
6195-
static void
6196-
ATExecAlterConstraint(Relation rel, AlterTableCmd *cmd,
6197-
bool recurse, bool recursing, LOCKMODE lockmode)
6198-
{
6199-
Relation conrel;
6200-
SysScanDesc scan;
6201-
ScanKeyData key;
6202-
HeapTuple contuple;
6203-
Form_pg_constraint currcon = NULL;
6204-
Constraint *cmdcon = NULL;
6205-
bool found = false;
6206-
6207-
Assert(IsA(cmd->def, Constraint));
6208-
cmdcon = (Constraint *) cmd->def;
6209-
6210-
conrel = heap_open(ConstraintRelationId, RowExclusiveLock);
6211-
6212-
/*
6213-
* Find and check the target constraint
6214-
*/
6215-
ScanKeyInit(&key,
6216-
Anum_pg_constraint_conrelid,
6217-
BTEqualStrategyNumber, F_OIDEQ,
6218-
ObjectIdGetDatum(RelationGetRelid(rel)));
6219-
scan = systable_beginscan(conrel, ConstraintRelidIndexId,
6220-
true, SnapshotNow, 1, &key);
6221-
6222-
while (HeapTupleIsValid(contuple = systable_getnext(scan)))
6223-
{
6224-
currcon = (Form_pg_constraint) GETSTRUCT(contuple);
6225-
if (strcmp(NameStr(currcon->conname), cmdcon->conname) == 0)
6226-
{
6227-
found = true;
6228-
break;
6229-
}
6230-
}
6231-
6232-
if (!found)
6233-
ereport(ERROR,
6234-
(errcode(ERRCODE_UNDEFINED_OBJECT),
6235-
errmsg("constraint \"%s\" of relation \"%s\" does not exist",
6236-
cmdcon->conname, RelationGetRelationName(rel))));
6237-
6238-
if (currcon->contype != CONSTRAINT_FOREIGN)
6239-
ereport(ERROR,
6240-
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
6241-
errmsg("constraint \"%s\" of relation \"%s\" is not a foreign key constraint",
6242-
cmdcon->conname, RelationGetRelationName(rel))));
6243-
6244-
if (currcon->condeferrable != cmdcon->deferrable ||
6245-
currcon->condeferred != cmdcon->initdeferred)
6246-
{
6247-
HeapTuple copyTuple;
6248-
HeapTuple tgtuple;
6249-
Form_pg_constraint copy_con;
6250-
Form_pg_trigger copy_tg;
6251-
ScanKeyData tgkey;
6252-
SysScanDesc tgscan;
6253-
Relation tgrel;
6254-
6255-
/*
6256-
* Now update the catalog, while we have the door open.
6257-
*/
6258-
copyTuple = heap_copytuple(contuple);
6259-
copy_con = (Form_pg_constraint) GETSTRUCT(copyTuple);
6260-
copy_con->condeferrable = cmdcon->deferrable;
6261-
copy_con->condeferred = cmdcon->initdeferred;
6262-
simple_heap_update(conrel, &copyTuple->t_self, copyTuple);
6263-
CatalogUpdateIndexes(conrel, copyTuple);
6264-
6265-
InvokeObjectPostAlterHook(ConstraintRelationId,
6266-
HeapTupleGetOid(contuple), 0);
6267-
6268-
heap_freetuple(copyTuple);
6269-
6270-
/*
6271-
* Now we need to update the multiple entries in pg_trigger
6272-
* that implement the constraint.
6273-
*/
6274-
tgrel = heap_open(TriggerRelationId, RowExclusiveLock);
6275-
6276-
ScanKeyInit(&tgkey,
6277-
Anum_pg_trigger_tgconstraint,
6278-
BTEqualStrategyNumber, F_OIDEQ,
6279-
ObjectIdGetDatum(HeapTupleGetOid(contuple)));
6280-
6281-
tgscan = systable_beginscan(tgrel, TriggerConstraintIndexId, true,
6282-
SnapshotNow, 1, &tgkey);
6283-
6284-
while (HeapTupleIsValid(tgtuple = systable_getnext(tgscan)))
6285-
{
6286-
copyTuple = heap_copytuple(tgtuple);
6287-
copy_tg = (Form_pg_trigger) GETSTRUCT(copyTuple);
6288-
copy_tg->tgdeferrable = cmdcon->deferrable;
6289-
copy_tg->tginitdeferred = cmdcon->initdeferred;
6290-
simple_heap_update(tgrel, &copyTuple->t_self, copyTuple);
6291-
CatalogUpdateIndexes(tgrel, copyTuple);
6292-
6293-
InvokeObjectPostAlterHook(TriggerRelationId,
6294-
HeapTupleGetOid(tgtuple), 0);
6295-
6296-
heap_freetuple(copyTuple);
6297-
}
6298-
6299-
systable_endscan(tgscan);
6300-
6301-
heap_close(tgrel, RowExclusiveLock);
6302-
6303-
/*
6304-
* Invalidate relcache so that others see the new attributes.
6305-
*/
6306-
CacheInvalidateRelcache(rel);
6307-
}
6308-
6309-
systable_endscan(scan);
6310-
6311-
heap_close(conrel, RowExclusiveLock);
6312-
}
6313-
63146176
/*
63156177
* ALTER TABLE VALIDATE CONSTRAINT
63166178
*

src/backend/parser/gram.y

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1941,21 +1941,6 @@ alter_table_cmd:
19411941
n->def = $2;
19421942
$$ = (Node *)n;
19431943
}
1944-
/* ALTER TABLE <name> ALTER CONSTRAINT ... */
1945-
| ALTER CONSTRAINT name ConstraintAttributeSpec
1946-
{
1947-
AlterTableCmd *n = makeNode(AlterTableCmd);
1948-
Constraint *c = makeNode(Constraint);
1949-
n->subtype = AT_AlterConstraint;
1950-
n->def = (Node *) c;
1951-
c->contype = CONSTR_FOREIGN; /* others not supported, yet */
1952-
c->conname = $3;
1953-
processCASbits($4, @4, "ALTER CONSTRAINT statement",
1954-
&c->deferrable,
1955-
&c->initdeferred,
1956-
NULL, NULL, yyscanner);
1957-
$$ = (Node *)n;
1958-
}
19591944
/* ALTER TABLE <name> VALIDATE CONSTRAINT ... */
19601945
| VALIDATE CONSTRAINT name
19611946
{

src/include/nodes/parsenodes.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1209,7 +1209,6 @@ typedef enum AlterTableType
12091209
AT_AddConstraint, /* add constraint */
12101210
AT_AddConstraintRecurse, /* internal to commands/tablecmds.c */
12111211
AT_ReAddConstraint, /* internal to commands/tablecmds.c */
1212-
AT_AlterConstraint, /* alter constraint */
12131212
AT_ValidateConstraint, /* validate constraint */
12141213
AT_ValidateConstraintRecurse, /* internal to commands/tablecmds.c */
12151214
AT_ProcessedConstraint, /* pre-processed add constraint (local in

src/test/regress/expected/foreign_key.out

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,15 +1132,6 @@ CREATE TEMP TABLE fktable (
11321132
id int primary key,
11331133
fk int references pktable deferrable initially deferred
11341134
);
1135-
-- check ALTER CONSTRAINT
1136-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey NOT DEFERRABLE;
1137-
-- illegal option
1138-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey NOT DEFERRABLE INITIALLY DEFERRED;
1139-
ERROR: constraint declared INITIALLY DEFERRED must be DEFERRABLE
1140-
LINE 1: ...e ALTER CONSTRAINT fktable_fk_fkey NOT DEFERRABLE INITIALLY ...
1141-
^
1142-
-- reset
1143-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey DEFERRABLE INITIALLY DEFERRED;
11441135
INSERT INTO pktable VALUES (5, 10);
11451136
BEGIN;
11461137
-- doesn't match PK, but no error yet
@@ -1151,16 +1142,6 @@ UPDATE fktable SET id = id + 1;
11511142
COMMIT;
11521143
ERROR: insert or update on table "fktable" violates foreign key constraint "fktable_fk_fkey"
11531144
DETAIL: Key (fk)=(20) is not present in table "pktable".
1154-
-- change the constraint definition and retest
1155-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey DEFERRABLE INITIALLY IMMEDIATE;
1156-
BEGIN;
1157-
-- doesn't match PK, should throw error now
1158-
INSERT INTO fktable VALUES (0, 20);
1159-
ERROR: insert or update on table "fktable" violates foreign key constraint "fktable_fk_fkey"
1160-
DETAIL: Key (fk)=(20) is not present in table "pktable".
1161-
COMMIT;
1162-
-- reset
1163-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey DEFERRABLE INITIALLY DEFERRED;
11641145
-- check same case when insert is in a different subtransaction than update
11651146
BEGIN;
11661147
-- doesn't match PK, but no error yet

src/test/regress/sql/foreign_key.sql

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -818,13 +818,6 @@ CREATE TEMP TABLE fktable (
818818
fk int references pktable deferrable initially deferred
819819
);
820820

821-
-- check ALTER CONSTRAINT
822-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey NOT DEFERRABLE;
823-
-- illegal option
824-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey NOT DEFERRABLE INITIALLY DEFERRED;
825-
-- reset
826-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey DEFERRABLE INITIALLY DEFERRED;
827-
828821
INSERT INTO pktable VALUES (5, 10);
829822

830823
BEGIN;
@@ -838,19 +831,6 @@ UPDATE fktable SET id = id + 1;
838831
-- should catch error from initial INSERT
839832
COMMIT;
840833

841-
-- change the constraint definition and retest
842-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey DEFERRABLE INITIALLY IMMEDIATE;
843-
844-
BEGIN;
845-
846-
-- doesn't match PK, should throw error now
847-
INSERT INTO fktable VALUES (0, 20);
848-
849-
COMMIT;
850-
851-
-- reset
852-
ALTER TABLE fktable ALTER CONSTRAINT fktable_fk_fkey DEFERRABLE INITIALLY DEFERRED;
853-
854834
-- check same case when insert is in a different subtransaction than update
855835

856836
BEGIN;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy