MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / where_contains_subquery_ref

Function where_contains_subquery_ref

nodedb-sql/src/planner/cte.rs:323–328  ·  view source on GitHub ↗
(selection: &Option<ast::Expr>, cte_name: &str)

Source from the content-addressed store, hash-verified

321}
322
323fn where_contains_subquery_ref(selection: &Option<ast::Expr>, cte_name: &str) -> bool {
324 match selection {
325 None => false,
326 Some(e) => expr_contains_subquery_ref(e, cte_name),
327 }
328}
329
330fn expr_contains_subquery_ref(expr: &ast::Expr, cte_name: &str) -> bool {
331 match expr {

Callers 1

validate_self_ref_countFunction · 0.85

Calls 1

Tested by

no test coverage detected