|
14 | 14 |
|
15 | 15 | #pragma once |
16 | 16 |
|
17 | | -<<<<<<< HEAD |
18 | | -======= |
19 | 17 | #pragma GCC diagnostic push |
20 | 18 | #pragma GCC diagnostic ignored "-Wunused-parameter" |
21 | 19 | #include <Poco/JSON/Object.h> |
22 | 20 | #pragma GCC diagnostic pop |
| 21 | + |
23 | 22 | #include <Common/config.h> // For ENABLE_CLARA |
24 | | ->>>>>>> fc932c9f0d (Storages: Deprecated libclara for normal build (#10325)) |
25 | 23 | #include <Flash/Coprocessor/TiDBTableScan.h> |
26 | 24 | #include <Interpreters/ExpressionActions.h> |
27 | 25 | #include <Storages/DeltaMerge/Filter/RSOperator.h> |
@@ -51,20 +49,16 @@ class PushDownExecutor |
51 | 49 | const ANNQueryInfoPtr & ann_query_info_, |
52 | 50 | #if ENABLE_CLARA |
53 | 51 | const FTSQueryInfoPtr & fts_query_info_, |
54 | | -<<<<<<< HEAD |
55 | | - const ExpressionActionsPtr & beofre_where_, |
56 | | -======= |
57 | 52 | #endif |
58 | 53 | const ExpressionActionsPtr & before_where_, |
59 | | ->>>>>>> fc932c9f0d (Storages: Deprecated libclara for normal build (#10325)) |
60 | 54 | const ExpressionActionsPtr & project_after_where_, |
61 | 55 | const ColumnDefinesPtr & filter_columns_, |
62 | 56 | const String filter_column_name_, |
63 | 57 | const ExpressionActionsPtr & extra_cast_, |
64 | 58 | const ColumnDefinesPtr & columns_after_cast_, |
65 | 59 | const ColumnRangePtr & column_range_) |
66 | 60 | : rs_operator(rs_operator_) |
67 | | - , before_where(beofre_where_) |
| 61 | + , before_where(before_where_) |
68 | 62 | , project_after_where(project_after_where_) |
69 | 63 | , filter_column_name(std::move(filter_column_name_)) |
70 | 64 | , filter_columns(filter_columns_) |
@@ -132,7 +126,7 @@ class PushDownExecutor |
132 | 126 | const ExpressionActionsPtr before_where; |
133 | 127 | // The projection after the filter, used to remove the tmp filter column |
134 | 128 | // 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 |
136 | 130 | const ExpressionActionsPtr project_after_where; |
137 | 131 | const String filter_column_name; |
138 | 132 | // The columns needed by the filter expression |
|
0 commit comments