From d5c285ed5ba281c9dd0cebdf146744195bc0de34 Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Tue, 4 Jan 2022 19:59:35 +0800 Subject: [PATCH] [skip e2e] Reorder header files for ExecExprVisitor.cpp (#14719) Signed-off-by: yudong.cai --- internal/core/src/query/visitors/ExecExprVisitor.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/internal/core/src/query/visitors/ExecExprVisitor.cpp b/internal/core/src/query/visitors/ExecExprVisitor.cpp index 453c085077..d99b76d815 100644 --- a/internal/core/src/query/visitors/ExecExprVisitor.cpp +++ b/internal/core/src/query/visitors/ExecExprVisitor.cpp @@ -9,17 +9,17 @@ // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express // or implied. See the License for the specific language governing permissions and limitations under the License +#include #include +#include #include #include -#include -#include -#include "segcore/SegmentGrowingImpl.h" + #include "query/ExprImpl.h" #include "query/generated/ExecExprVisitor.h" +#include "segcore/SegmentGrowingImpl.h" namespace milvus::query { -#if 1 // THIS CONTAINS EXTRA BODY FOR VISITOR // WILL BE USED BY GENERATOR namespace impl { @@ -67,7 +67,6 @@ class ExecExprVisitor : ExprVisitor { Timestamp timestamp_; }; } // namespace impl -#endif void ExecExprVisitor::visit(LogicalUnaryExpr& expr) {