Skip to content

Commit ed5f542

Browse files
Update src/ast/mod.rs
Co-authored-by: Ifeanyi Ubah <[email protected]>
1 parent 11b97f7 commit ed5f542

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7790,7 +7790,7 @@ pub enum TableObject {
77907790
impl fmt::Display for TableObject {
77917791
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
77927792
match self {
7793-
Self::TableName(table_name) => write!(f, "{}", display_separated(&table_name.0, ".")),
7793+
Self::TableName(table_name) => write!(f, "{table_name}"),
77947794
Self::TableFunction(func) => write!(f, "FUNCTION {}", func),
77957795
}
77967796
}

0 commit comments

Comments
 (0)