Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Mar 6, 2024
1 parent fc1ed14 commit 21950bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private void runInternal(ConnectContext ctx, StmtExecutor executor) throws Excep
: false;
insertExecutor.getCoordinator().getQueryOptions()
.setEnableMemtableOnSinkNode(isEnableMemtableOnSinkNode);
LOG.debug("enableMemtableOnSinkNode: {}, jobId: {}", isEnableMemtableOnSinkNode, jobId);
LOG.info("enableMemtableOnSinkNode: {}, jobId: {}", isEnableMemtableOnSinkNode, jobId);
} else if (physicalSink instanceof PhysicalHiveTableSink) {
HMSExternalTable hiveExternalTable = (HMSExternalTable) targetTableIf;
insertExecutor = new HiveInsertExecutor(ctx, hiveExternalTable, label, planner, insertCtx);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ public void close() {
}

private void execInternal() throws Exception {
LOG.debug("query id: {}, memtableonsinknode: {}", DebugUtil.printId(queryId),
LOG.info("query id: {}, memtableonsinknode: {}", DebugUtil.printId(queryId),
queryOptions.isEnableMemtableOnSinkNode());
if (LOG.isDebugEnabled() && !scanNodes.isEmpty()) {
LOG.debug("debug: in Coordinator::exec. query id: {}, planNode: {}",
Expand Down

0 comments on commit 21950bf

Please sign in to comment.