This is an automated email from the ASF dual-hosted git repository.
gabriellee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new e6d20f842c [Bug](compile) fix compile failed on function case (#23335)
e6d20f842c is described below
commit e6d20f842c1e397d76f9d4a730aa261a677de708
Author: Pxl <[email protected]>
AuthorDate: Tue Aug 22 22:10:53 2023 +0800
[Bug](compile) fix compile failed on function case (#23335)
---
be/src/vec/functions/function_case.h | 16 +++-------------
1 file changed, 3 insertions(+), 13 deletions(-)
diff --git a/be/src/vec/functions/function_case.h
b/be/src/vec/functions/function_case.h
index ca59568aec..ed3eae425b 100644
--- a/be/src/vec/functions/function_case.h
+++ b/be/src/vec/functions/function_case.h
@@ -17,8 +17,6 @@
#pragma once
-#include <string.h>
-
#include <algorithm>
#include <cstdint>
#include <memory>
@@ -30,9 +28,12 @@
#include "gutil/integral_types.h"
#include "vec/aggregate_functions/aggregate_function.h"
#include "vec/columns/column.h"
+#include "vec/columns/column_array.h"
#include "vec/columns/column_complex.h"
#include "vec/columns/column_const.h"
+#include "vec/columns/column_map.h"
#include "vec/columns/column_nullable.h"
+#include "vec/columns/column_struct.h"
#include "vec/columns/columns_number.h"
#include "vec/core/block.h"
#include "vec/core/column_numbers.h"
@@ -43,17 +44,6 @@
#include "vec/functions/function.h"
#include "vec/utils/template_helpers.hpp"
-namespace doris {
-class FunctionContext;
-
-namespace vectorized {
-class ColumnArray;
-class ColumnMap;
-class ColumnString;
-class ColumnStruct;
-} // namespace vectorized
-} // namespace doris
-
namespace doris::vectorized {
template <bool has_case, bool has_else>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]