Use less-generic table name in new regression test case.
Creating global objects named "foo" isn't an especially wise thing, but especially not in a test script that has already used that name for something else, and most especially not in a script that runs in parallel with other scripts that use that name :-( Per buildfarm.
This commit is contained in:
parent
38d103763d
commit
1c95f0b478
@ -3034,18 +3034,18 @@ CREATE TABLE list_partitioned (a int not null) partition by list (a);
|
||||
ALTER TABLE list_partitioned ALTER a DROP NOT NULL;
|
||||
DROP TABLE list_partitioned;
|
||||
-- partitioned table cannot participate in regular inheritance
|
||||
CREATE TABLE foo (
|
||||
CREATE TABLE nonpartitioned (
|
||||
a int,
|
||||
b int
|
||||
);
|
||||
ALTER TABLE partitioned INHERIT foo;
|
||||
ALTER TABLE partitioned INHERIT nonpartitioned;
|
||||
ERROR: cannot change inheritance of partitioned table
|
||||
ALTER TABLE foo INHERIT partitioned;
|
||||
ALTER TABLE nonpartitioned INHERIT partitioned;
|
||||
ERROR: cannot inherit from partitioned table "partitioned"
|
||||
-- cannot add NO INHERIT constraint to partitioned tables
|
||||
ALTER TABLE partitioned ADD CONSTRAINT chk_a CHECK (a > 0) NO INHERIT;
|
||||
ERROR: cannot add NO INHERIT constraint to partitioned table "partitioned"
|
||||
DROP TABLE partitioned, foo;
|
||||
DROP TABLE partitioned, nonpartitioned;
|
||||
--
|
||||
-- ATTACH PARTITION
|
||||
--
|
||||
|
@ -1923,17 +1923,17 @@ ALTER TABLE list_partitioned ALTER a DROP NOT NULL;
|
||||
DROP TABLE list_partitioned;
|
||||
|
||||
-- partitioned table cannot participate in regular inheritance
|
||||
CREATE TABLE foo (
|
||||
CREATE TABLE nonpartitioned (
|
||||
a int,
|
||||
b int
|
||||
);
|
||||
ALTER TABLE partitioned INHERIT foo;
|
||||
ALTER TABLE foo INHERIT partitioned;
|
||||
ALTER TABLE partitioned INHERIT nonpartitioned;
|
||||
ALTER TABLE nonpartitioned INHERIT partitioned;
|
||||
|
||||
-- cannot add NO INHERIT constraint to partitioned tables
|
||||
ALTER TABLE partitioned ADD CONSTRAINT chk_a CHECK (a > 0) NO INHERIT;
|
||||
|
||||
DROP TABLE partitioned, foo;
|
||||
DROP TABLE partitioned, nonpartitioned;
|
||||
|
||||
--
|
||||
-- ATTACH PARTITION
|
||||
|
Loading…
x
Reference in New Issue
Block a user