[minor](conjuncts) remove row-based conjuncts from vectorized engine (#12053)

This commit is contained in:
Gabriel
2022-08-25 10:13:20 +08:00
committed by GitHub
parent 6e6de1853c
commit 73a3471fbd
5 changed files with 0 additions and 7 deletions

View File

@ -94,7 +94,6 @@ AggregationNode::AggregationNode(ObjectPool* pool, const TPlanNode& tnode,
if (tnode.agg_node.__isset.use_streaming_preaggregation) {
_is_streaming_preagg = tnode.agg_node.use_streaming_preaggregation;
if (_is_streaming_preagg) {
DCHECK(_conjunct_ctxs.empty()) << "Preaggs have no conjuncts";
DCHECK(!tnode.agg_node.grouping_exprs.empty()) << "Streaming preaggs do grouping";
DCHECK(_limit == -1) << "Preaggs have no limits";
}