mirror of https://github.com/citusdata/citus.git
17 lines
290 B
SQL
17 lines
290 B
SQL
--
|
|
-- MULTI_UTILITY_WARNINGS
|
|
--
|
|
|
|
-- Tests to check if we inform the user about potential caveats of creating new
|
|
-- databases, schemas, and roles.
|
|
|
|
|
|
ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1010000;
|
|
|
|
|
|
CREATE DATABASE new_database;
|
|
|
|
CREATE ROLE new_role;
|
|
|
|
CREATE USER new_user;
|