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

Method flat_name

datafusion/common/src/column.rs:167–172  ·  view source on GitHub ↗

Serialize column into a flat name string

(&self)

Source from the content-addressed store, hash-verified

165
166 /// Serialize column into a flat name string
167 pub fn flat_name(&self) -> String {
168 match &self.relation {
169 Some(r) => format!("{}.{}", r, self.name),
170 None => self.name.clone(),
171 }
172 }
173
174 /// Serialize column into a quoted flat name string
175 pub fn quoted_flat_name(&self) -> String {

Callers 7

try_process_unnestMethod · 0.80
fmtMethod · 0.80
replace_cols_by_nameFunction · 0.80
containFunction · 0.80

Calls 1

cloneMethod · 0.45

Tested by

no test coverage detected