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

Method derived

datafusion/sql/src/unparser/ast.rs:499–502  ·  view source on GitHub ↗
(&mut self, value: DerivedRelationBuilder)

Source from the content-addressed store, hash-verified

497 self
498 }
499 pub fn derived(&mut self, value: DerivedRelationBuilder) -> &mut Self {
500 self.relation = Some(TableFactorBuilder::Derived(value));
501 self
502 }
503
504 pub fn unnest(&mut self, value: UnnestRelationBuilder) -> &mut Self {
505 self.relation = Some(TableFactorBuilder::Unnest(value));

Callers 3

unparseMethod · 0.80
deriveMethod · 0.80
unparseMethod · 0.80

Calls

no outgoing calls

Tested by 1

unparseMethod · 0.64