mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 04:32:33 +00:00
9 lines
212 B
MySQL
9 lines
212 B
MySQL
|
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;
|