Skip to content

Commit

Permalink
Fix IT failure issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CloudWise-Lukemiao committed Dec 17, 2024
1 parent b816687 commit 6f6553b
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
import org.apache.iotdb.db.queryengine.plan.execution.IQueryExecution;
import org.apache.iotdb.db.queryengine.plan.planner.LocalExecutionPlanner;
import org.apache.iotdb.db.queryengine.plan.relational.metadata.Metadata;
import org.apache.iotdb.db.queryengine.plan.relational.sql.ast.Statement;
import org.apache.iotdb.db.queryengine.plan.relational.sql.parser.SqlParser;
import org.apache.iotdb.db.queryengine.plan.statement.crud.InsertTabletStatement;
import org.apache.iotdb.db.utils.CommonUtils;
Expand Down Expand Up @@ -71,7 +70,7 @@ public Response executeQueryStatement(SQL sql, SecurityContext securityContext)
throws NotFoundException {
SqlParser relationSqlParser = new SqlParser();
Long queryId = null;
Statement statement = null;
org.apache.iotdb.db.queryengine.plan.relational.sql.ast.Statement statement = null;
long startTime = System.nanoTime();
try {
IClientSession clientSession = SESSION_MANAGER.getCurrSessionAndUpdateIdleTime();
Expand Down Expand Up @@ -192,7 +191,7 @@ public Response executeNonQueryStatement(SQL sql, SecurityContext securityContex
throws NotFoundException {
SqlParser relationSqlParser = new SqlParser();
Long queryId = null;
Statement statement = null;
org.apache.iotdb.db.queryengine.plan.relational.sql.ast.Statement statement = null;
long startTime = System.nanoTime();
try {
IClientSession clientSession = SESSION_MANAGER.getCurrSessionAndUpdateIdleTime();
Expand Down

0 comments on commit 6f6553b

Please sign in to comment.