show_error
Onder Kalaci 2022-01-26 17:26:21 +01:00
parent 9bc0fd9479
commit e5df5b8596
3 changed files with 22 additions and 0 deletions

View File

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

View File

@ -21,6 +21,7 @@ test: multi_mx_function_table_reference
test: multi_test_catalog_views
# the following test has to be run sequentially
test: mx_application_name
test: multi_mx_create_table
test: start_stop_metadata_sync
test: multi_mx_hide_shard_names

View File

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