aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorivanmorozov <ivanmorozov@yandex-team.com>2023-06-19 15:10:25 +0300
committerivanmorozov <ivanmorozov@yandex-team.com>2023-06-19 15:10:25 +0300
commitde64ef136314d3cec471dd7c88cd241291c9b331 (patch)
tree3f07d300a3944ed25ca891e5ca018bc68813633e
parent3f5d17dc0369f7ad83fa3af322f3ccf62bb00b59 (diff)
downloadydb-de64ef136314d3cec471dd7c88cd241291c9b331.tar.gz
fix features builder
-rw-r--r--ydb/core/tx/columnshard/engines/reader/order_control/pk_with_limit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/columnshard/engines/reader/order_control/pk_with_limit.h b/ydb/core/tx/columnshard/engines/reader/order_control/pk_with_limit.h
index 842406f331..b8cd01b075 100644
--- a/ydb/core/tx/columnshard/engines/reader/order_control/pk_with_limit.h
+++ b/ydb/core/tx/columnshard/engines/reader/order_control/pk_with_limit.h
@@ -54,7 +54,7 @@ protected:
virtual std::vector<TGranule::TPtr> DoDetachReadyGranules(TResultController& granulesToOut) override;
virtual bool DoOnFilterReady(TBatch& batchInfo, const TGranule& granule, TGranulesFillingContext& context) override;
virtual TFeatures DoGetFeatures() const override {
- return (TFeatures)EFeatures::CanInterrupt & (TFeatures)EFeatures::NeedNotAppliedEarlyFilter;
+ return (TFeatures)EFeatures::CanInterrupt | (TFeatures)EFeatures::NeedNotAppliedEarlyFilter;
}
virtual TString DoDebugString() const override {