ClickHouse/dbms/tests/queries/0_stateless/01073_grant_and_revoke.reference

12 lines
365 B
Plaintext
Raw Normal View History

2020-02-04 01:15:14 +00:00
CREATE USER test_user_01073
A
B
GRANT DELETE, INSERT 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
C
GRANT DELETE ON *.* TO test_user_01073
GRANT SELECT(col1) ON db4.table TO test_user_01073