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

Method is_flatten_table_alias

datafusion/sql/src/unparser/ast.rs:194–196  ·  view source on GitHub ↗

Returns true if the given table alias refers to a FLATTEN relation.

(&self, alias: &str)

Source from the content-addressed store, hash-verified

192
193 /// Returns true if the given table alias refers to a FLATTEN relation.
194 pub fn is_flatten_table_alias(&self, alias: &str) -> bool {
195 self.flatten_table_aliases.iter().any(|a| a == alias)
196 }
197
198 /// Returns the most recently generated flatten alias, or `None` if
199 /// `next_flatten_alias` has not been called yet.

Callers 1

Calls 2

anyMethod · 0.45
iterMethod · 0.45

Tested by

no test coverage detected