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

Class Subquery

datafusion/expr/src/logical_plan/plan.rs:4088–4095  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4086/// Subquery
4087#[derive(Clone, PartialEq, Eq, PartialOrd, Hash)]
4088pub struct Subquery {
4089 /// The subquery
4090 pub subquery: Arc<LogicalPlan>,
4091 /// The outer references used in the subquery
4092 pub outer_ref_columns: Vec<Expr>,
4093 /// Span information for subquery projection columns
4094 pub spans: Spans,
4095}
4096
4097impl Normalizeable for Subquery {
4098 fn can_normalize(&self) -> bool {

Callers 10

with_new_exprsMethod · 0.85
map_childrenMethod · 0.85
apply_subqueriesMethod · 0.85
map_subqueriesMethod · 0.85
expr_to_sql_innerMethod · 0.85
from_in_subqueryFunction · 0.85
from_set_comparisonFunction · 0.85
from_scalar_subqueryFunction · 0.85
from_existsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…