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

Method full_name_str

src/sql/src/names.rs:499–505  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

497
498impl ResolvedItemName {
499 pub fn full_name_str(&self) -> String {
500 match self {
501 ResolvedItemName::Item { full_name, .. } => full_name.to_string(),
502 ResolvedItemName::Cte { name, .. } => name.clone(),
503 ResolvedItemName::Error => "error in name resolution".to_string(),
504 }
505 }
506
507 pub fn full_item_name(&self) -> &FullItemName {
508 match self {

Callers 5

is_repeat_rowFunction · 0.80
plan_show_create_itemFunction · 0.80
plan_sinkFunction · 0.80
plan_copy_fromFunction · 0.80

Calls 2

to_stringMethod · 0.45
cloneMethod · 0.45

Tested by

no test coverage detected