mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 05:22:17 +00:00
9 lines
212 B
SQL
9 lines
212 B
SQL
DROP USER IF EXISTS test_user_01074;
|
|
CREATE USER test_user_01074;
|
|
|
|
GRANT SELECT ON *.* TO test_user_01074;
|
|
REVOKE SELECT ON db.* FROM test_user_01074;
|
|
SHOW GRANTS FOR test_user_01074;
|
|
|
|
DROP USER test_user_01074;
|