You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@impala.apache.org by "Fredy Wijaya (JIRA)" <ji...@apache.org> on 2018/04/19 16:31:00 UTC

[jira] [Created] (IMPALA-6891) AuthorizationException in CROSS JOIN

Fredy Wijaya created IMPALA-6891:
------------------------------------

             Summary: AuthorizationException in CROSS JOIN
                 Key: IMPALA-6891
                 URL: https://issues.apache.org/jira/browse/IMPALA-6891
             Project: IMPALA
          Issue Type: Bug
          Components: Frontend
    Affects Versions: Impala 2.11.0, Impala 2.10.0, Impala 2.9.0
            Reporter: Fredy Wijaya


{noformat}
[localhost:21000] foo> create table t1(i int, j int);
[localhost:21000] foo> create table t2(i int, j int);
[localhost:21000] foo> grant select(i) on table foo.t1 to role test_role;
[localhost:21000] foo> grant select(j) on table foo.t1 to role test_role;
[localhost:21000] foo> grant select(i) on table foo.t2 to role test_role;
[localhost:21000] foo> grant select(j) on table foo.t2 to role test_role;{noformat}
{noformat}
[localhost:21000] foo> select * from foo.t1 a cross join foo.t2 b;
Fetched 0 row(s) in 0.14s
{noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)