Skip to content

Commit

Permalink
PHOENIX-6848 Fix grant and revoke command rule documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mlorek authored and stoty committed Dec 16, 2022
1 parent 0fad1b8 commit 91f3f24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/phoenix.csv
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ DROP SCHEMA my_schema
"

"Commands","GRANT","
GRANT {permissionString} [ON [SCHEMA schemaName] tableName] TO [GROUP] userString
GRANT {permissionString} [ON { {SCHEMA schemaName} | tableRef}] TO [GROUP] userString
","
Grant permissions at table, schema or user level. Permissions are managed by HBase in hbase:acl table, hence access controls need to be enabled. This feature will be available from Phoenix 4.14 version onwards.

Expand All @@ -398,7 +398,7 @@ GRANT 'A' ON SCHEMA my_schema TO 'User3'
"

"Commands","REVOKE","
REVOKE [ON [SCHEMA schemaName] tableName] FROM [GROUP] userString
REVOKE [ON { {SCHEMA schemaName} | tableRef}] FROM [GROUP] userString
","
Revoke permissions at table, schema or user level. Permissions are managed by HBase in hbase:acl table, hence access controls need to be enabled. This feature will be available from Phoenix 4.14 version onwards.

Expand Down

0 comments on commit 91f3f24

Please sign in to comment.