pub fn plan_recursive_cte(
query: &Query,
catalog: &dyn SqlCatalog,
functions: &FunctionRegistry,
temporal: TemporalScope,
) -> Result<SqlPlan>Expand description
Plan a WITH RECURSIVE query.
Dispatches to either plan_recursive_scan (collection-backed) or
plan_recursive_value (pure expression / value-generating) based on
whether the anchor arm references a real collection.