Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eldenmoon committed May 6, 2024
1 parent 30be485 commit 2f1c773
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import org.apache.doris.datasource.FileQueryScanNode;
import org.apache.doris.load.loadv2.LoadJob;
import org.apache.doris.metric.MetricRepo;
import org.apache.doris.mysql.MysqlCommand;
import org.apache.doris.nereids.NereidsPlanner;
import org.apache.doris.nereids.stats.StatsErrorEstimator;
import org.apache.doris.planner.DataPartition;
Expand Down Expand Up @@ -418,7 +419,7 @@ private void initQueryOptions(ConnectContext context) {
this.queryOptions.setFeProcessUuid(ExecuteEnv.getInstance().getProcessUUID());
this.queryOptions.setWaitFullBlockScheduleTimes(context.getSessionVariable().getWaitFullBlockScheduleTimes());
this.queryOptions.setMysqlRowBinaryFormat(
context.getMysqlChannel().useServerPrepStmts());
context.getCommand() == MysqlCommand.COM_STMT_EXECUTE);
}

public ConnectContext getConnectContext() {
Expand Down

0 comments on commit 2f1c773

Please sign in to comment.