MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / fmt

Method fmt

src/sql/src/names.rs:92–97  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter)

Source from the content-addressed store, hash-verified

90
91impl fmt::Display for FullItemName {
92 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
93 if let RawDatabaseSpecifier::Name(database) = &self.database {
94 write!(f, "{}.", database)?;
95 }
96 write!(f, "{}.{}", self.schema, self.item)
97 }
98}
99
100impl From<FullItemName> for UnresolvedItemName {

Callers

nothing calls this directly

Calls 7

write_nodeMethod · 0.80
to_ast_string_simpleMethod · 0.80
comma_separatedFunction · 0.50
write_strMethod · 0.45
as_strMethod · 0.45
lenMethod · 0.45
to_stringMethod · 0.45

Tested by

no test coverage detected