[typo] correct getLogger argument (#7127)
This commit is contained in:
@ -41,7 +41,7 @@ import org.json.JSONObject;
|
||||
|
||||
// System variable
|
||||
public class SessionVariable implements Serializable, Writable {
|
||||
static final Logger LOG = LogManager.getLogger(StmtExecutor.class);
|
||||
static final Logger LOG = LogManager.getLogger(SessionVariable.class);
|
||||
|
||||
public static final String EXEC_MEM_LIMIT = "exec_mem_limit";
|
||||
public static final String QUERY_TIMEOUT = "query_timeout";
|
||||
|
||||
@ -31,7 +31,7 @@ import org.apache.logging.log4j.Logger;
|
||||
* rewrite EncryptKey to LiteralExpr
|
||||
*/
|
||||
public class RewriteEncryptKeyRule implements ExprRewriteRule {
|
||||
private static final Logger LOG = LogManager.getLogger(FoldConstantsRule.class);
|
||||
private static final Logger LOG = LogManager.getLogger(RewriteEncryptKeyRule.class);
|
||||
|
||||
public static ExprRewriteRule INSTANCE = new RewriteEncryptKeyRule();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user