mirror of https://github.com/citusdata/citus.git
fail
parent
9bc0fd9479
commit
e5df5b8596
|
@ -0,0 +1,11 @@
|
||||||
|
CREATE SCHEMA mx_app_name;
|
||||||
|
SET application_name TO mx_app_name;
|
||||||
|
CREATE TABLE dist_1(a int);
|
||||||
|
SELECT create_distributed_table('dist_1', 'a');
|
||||||
|
create_distributed_table
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
|
||||||
|
(1 row)
|
||||||
|
|
||||||
|
DROP TABLE dist_1;
|
||||||
|
DROP SCHEMA mx_app_name CASCADE;
|
|
@ -21,6 +21,7 @@ test: multi_mx_function_table_reference
|
||||||
test: multi_test_catalog_views
|
test: multi_test_catalog_views
|
||||||
|
|
||||||
# the following test has to be run sequentially
|
# the following test has to be run sequentially
|
||||||
|
test: mx_application_name
|
||||||
test: multi_mx_create_table
|
test: multi_mx_create_table
|
||||||
test: start_stop_metadata_sync
|
test: start_stop_metadata_sync
|
||||||
test: multi_mx_hide_shard_names
|
test: multi_mx_hide_shard_names
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
CREATE SCHEMA mx_app_name;
|
||||||
|
|
||||||
|
SET application_name TO mx_app_name;
|
||||||
|
CREATE TABLE dist_1(a int);
|
||||||
|
SELECT create_distributed_table('dist_1', 'a');
|
||||||
|
|
||||||
|
DROP TABLE dist_1;
|
||||||
|
|
||||||
|
DROP SCHEMA mx_app_name CASCADE;
|
||||||
|
|
Loading…
Reference in New Issue