csun5285 commented on code in PR #67915:
URL: https://github.com/apache/doris/pull/67915#discussion_r4004025601


##########
be/src/exec/operator/olap_scan_operator.cpp:
##########
@@ -460,6 +460,17 @@ static bool contains_expr_node_type(const VExprSPtr& expr, 
TExprNodeType::type n
     });
 }
 
+// Find MATCH recursively; ones nested in AND / OR / NOT count too.
+static bool is_match_expr(const VExprSPtr& expr) {
+    DORIS_CHECK(expr != nullptr);
+    if (expr->node_type() == TExprNodeType::MATCH_PRED ||

Review Comment:
   在cloud 上可以认为 match 的执行一定有倒排索引的



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to