Add tests for distributing catalog tables

pull/3938/head
Marco Slot 2020-09-09 16:56:37 +02:00
parent bd12555b16
commit b82f6ee163
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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');