forked from huawei/openGauss-server
18 lines
295 B
SQL
18 lines
295 B
SQL
DROP ROLE IF EXISTS shutdown_test;
|
|
|
|
CREATE USER shutdown_test WITH PASSWORD 'Shutdown@123';
|
|
|
|
SET SESSION AUTHORIZATION shutdown_test PASSWORD 'Shutdown@123';
|
|
|
|
shutdown;
|
|
shutdown invalid_str;
|
|
shutdown fast;
|
|
shutdown smart;
|
|
shutdown immediate;
|
|
|
|
\c
|
|
|
|
DROP USER shutdown_test;
|
|
|
|
shutdown invalid_str;
|