(StmtTableCache stmtTableCache, TQueryCtx queryCtx,
AuthorizationFactory authzFactory, AuthorizationContext authzCtx)
| 912 | private boolean hasEmptySpjResultSet_ = false; |
| 913 | |
| 914 | public Analyzer(StmtTableCache stmtTableCache, TQueryCtx queryCtx, |
| 915 | AuthorizationFactory authzFactory, AuthorizationContext authzCtx) { |
| 916 | ancestors_ = new ArrayList<>(); |
| 917 | globalState_ = new GlobalState(stmtTableCache, queryCtx, authzFactory, authzCtx); |
| 918 | user_ = new User(TSessionStateUtil.getEffectiveUser(queryCtx.session)); |
| 919 | } |
| 920 | |
| 921 | /** |
| 922 | * Analyzer constructor for nested select block. GlobalState is inherited from the |
nothing calls this directly
no test coverage detected