Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Not A Problem
-
1.3.0
-
None
-
None
-
None
Description
Following does not seem to work:
grant all on URI '/tmp/ABC' to role test_sentry;
create external table test(col int) location '/tmp/abc/hh';
But following seems to work:
grant all on URI '/tmp/ABC/hh' to role test_sentry;
create external table test(col int) location '/tmp/abc/hh';
grant all on URI '/tmp/abc' to role test_sentry;
create external table test(col int) location '/tmp/abc/hh';