mirror of https://github.com/citusdata/citus.git
Add tests for distributing catalog tables
parent
bd12555b16
commit
b82f6ee163
|
@ -317,3 +317,8 @@ WHERE col1 = 132;
|
|||
|
||||
DROP TABLE data_load_test1, data_load_test2;
|
||||
END;
|
||||
-- distributing catalog tables is not supported
|
||||
SELECT create_distributed_table('pg_class', 'relname');
|
||||
ERROR: cannot distribute catalog tables
|
||||
SELECT create_reference_table('pg_class');
|
||||
ERROR: cannot distribute catalog tables
|
||||
|
|
|
@ -201,3 +201,7 @@ WHERE col1 = 132;
|
|||
|
||||
DROP TABLE data_load_test1, data_load_test2;
|
||||
END;
|
||||
|
||||
-- distributing catalog tables is not supported
|
||||
SELECT create_distributed_table('pg_class', 'relname');
|
||||
SELECT create_reference_table('pg_class');
|
||||
|
|
Loading…
Reference in New Issue