MCPcopy Create free account
hub / github.com/apache/datafusion / contains_cte

Method contains_cte

datafusion/sql/src/planner.rs:390–392  ·  view source on GitHub ↗

Returns true if there is a Common Table Expression (CTE) / Subquery for the specified name

(&self, cte_name: &str)

Source from the content-addressed store, hash-verified

388 /// Returns true if there is a Common Table Expression (CTE) /
389 /// Subquery for the specified name
390 pub fn contains_cte(&self, cte_name: &str) -> bool {
391 self.ctes.contains_key(cte_name)
392 }
393
394 /// Inserts a LogicalPlan for the Common Table Expression (CTE) /
395 /// Subquery for the specified name

Callers 1

plan_with_clauseMethod · 0.80

Calls 1

contains_keyMethod · 0.45

Tested by

no test coverage detected