From 2c058055a055b74a284e0907cfd460b512621888 Mon Sep 17 00:00:00 2001 From: Yongqiang YANG <98214048+dataroaring@users.noreply.github.com> Date: Wed, 10 Jul 2024 22:25:22 +0800 Subject: [PATCH] format --- .../src/main/java/org/apache/doris/qe/StmtExecutor.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java index d92077093fd892..b9a5351cb98c5c 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java @@ -769,7 +769,8 @@ private void executeByNereids(TUniqueId queryId) throws Exception { // Query following createting table would throw table not exist error. // For example. // t1: client issues create table to master fe - // t2: client issues query sql to observer fe, the query would fail due to not exist table in plan phase. + // t2: client issues query sql to observer fe, the query would fail due to not exist table in + // plan phase. // t3: observer fe receive editlog creating the table from the master fe syncJournalIfNeeded(); planner = new NereidsPlanner(statementContext); @@ -970,7 +971,8 @@ public void executeByLegacy(TUniqueId queryId) throws Exception { // Query following createting table would throw table not exist error. // For example. // t1: client issues create table to master fe - // t2: client issues query sql to observer fe, the query would fail due to not exist table in plan phase. + // t2: client issues query sql to observer fe, the query would fail due to not exist table + // in plan phase. // t3: observer fe receive editlog creating the table from the master fe syncJournalIfNeeded(); analyzer = new Analyzer(context.getEnv(), context);