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

Method alias

datafusion/expr/src/expr.rs:1786–1788  ·  view source on GitHub ↗

Return `self AS name` alias expression

(self, name: impl Into<String>)

Source from the content-addressed store, hash-verified

1784
1785 /// Return `self AS name` alias expression
1786 pub fn alias(self, name: impl Into<String>) -> Expr {
1787 Expr::Alias(Alias::new(self, None::<&str>, name.into()))
1788 }
1789
1790 /// Return `self AS name` alias expression with metadata
1791 ///

Callers 15

plan_pivotFunction · 0.45
plan_unpivotFunction · 0.45
alias_if_changedMethod · 0.45
test_expr_placeholderFunction · 0.45
count_allFunction · 0.45
plan_tpcds_subqueryFunction · 0.45
join_with_alias_filterFunction · 0.45

Calls 3

AliasClass · 0.85
newFunction · 0.85
intoMethod · 0.45