Commit b7d00836 authored by tristaZero's avatar tristaZero
Browse files

delete `to` `from`

parent a12f75d6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -20,11 +20,11 @@ grammar DCLStatement;
import Symbol, Keyword, Literals, BaseRule;

grant
    : GRANT (proxyClause_ | privilegeClause_ | roleClause_) TO
    : GRANT (proxyClause_ | privilegeClause_ | roleClause_)
    ;

revoke
    : REVOKE (proxyClause_ | privilegeClause_ | allClause_ | roleClause_) FROM
    : REVOKE (proxyClause_ | privilegeClause_ | allClause_ | roleClause_)
    ;  

proxyClause_