Skip to content

Commit 775985c

Browse files
committed
Resolve conflict
Signed-off-by: JaySon-Huang <tshent@qq.com>
1 parent 756a823 commit 775985c

1 file changed

Lines changed: 3 additions & 9 deletions

File tree

dbms/src/Storages/DeltaMerge/Filter/PushDownExecutor.h

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@
1414

1515
#pragma once
1616

17-
<<<<<<< HEAD
18-
=======
1917
#pragma GCC diagnostic push
2018
#pragma GCC diagnostic ignored "-Wunused-parameter"
2119
#include <Poco/JSON/Object.h>
2220
#pragma GCC diagnostic pop
21+
2322
#include <Common/config.h> // For ENABLE_CLARA
24-
>>>>>>> fc932c9f0d (Storages: Deprecated libclara for normal build (#10325))
2523
#include <Flash/Coprocessor/TiDBTableScan.h>
2624
#include <Interpreters/ExpressionActions.h>
2725
#include <Storages/DeltaMerge/Filter/RSOperator.h>
@@ -51,20 +49,16 @@ class PushDownExecutor
5149
const ANNQueryInfoPtr & ann_query_info_,
5250
#if ENABLE_CLARA
5351
const FTSQueryInfoPtr & fts_query_info_,
54-
<<<<<<< HEAD
55-
const ExpressionActionsPtr & beofre_where_,
56-
=======
5752
#endif
5853
const ExpressionActionsPtr & before_where_,
59-
>>>>>>> fc932c9f0d (Storages: Deprecated libclara for normal build (#10325))
6054
const ExpressionActionsPtr & project_after_where_,
6155
const ColumnDefinesPtr & filter_columns_,
6256
const String filter_column_name_,
6357
const ExpressionActionsPtr & extra_cast_,
6458
const ColumnDefinesPtr & columns_after_cast_,
6559
const ColumnRangePtr & column_range_)
6660
: rs_operator(rs_operator_)
67-
, before_where(beofre_where_)
61+
, before_where(before_where_)
6862
, project_after_where(project_after_where_)
6963
, filter_column_name(std::move(filter_column_name_))
7064
, filter_columns(filter_columns_)
@@ -132,7 +126,7 @@ class PushDownExecutor
132126
const ExpressionActionsPtr before_where;
133127
// The projection after the filter, used to remove the tmp filter column
134128
// Used to construct the ExpressionBlockInputStream
135-
// Note: ususally we will remove the tmp filter column in the LateMaterializationBlockInputStream, this only used for unexpected cases
129+
// Note: usually we will remove the tmp filter column in the LateMaterializationBlockInputStream, this only used for unexpected cases
136130
const ExpressionActionsPtr project_after_where;
137131
const String filter_column_name;
138132
// The columns needed by the filter expression

0 commit comments

Comments
 (0)