ClickHouse/tests/queries/0_stateless/01073_grant_and_revoke.reference
2024-06-25 22:39:30 -03:00

17 lines
580 B
Plaintext

A
CREATE USER test_user_01073 IDENTIFIED WITH no_password
B
C
GRANT INSERT, ALTER DELETE ON *.* TO test_user_01073
GRANT SELECT ON db1.* TO test_user_01073
GRANT SELECT ON db2.`table` TO test_user_01073
GRANT SELECT(col1) ON db3.`table` TO test_user_01073
GRANT SELECT(col1, col2) ON db4.`table` TO test_user_01073
D
GRANT ALTER DELETE ON *.* TO test_user_01073
GRANT SELECT(col1) ON db4.`table` TO test_user_01073
E
GRANT SELECT ON db1.* TO test_role_01073
REVOKE SELECT(c1, c2, c3, c4, c5) ON db1.table1 FROM test_role_01073
REVOKE SELECT(c1) ON db1.table2 FROM test_role_01073