Skip to content

Commit 66b4ec8

Browse files
authored
Fix typo in sqlparser-derive README (#1310)
1 parent f77192d commit 66b4ec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

derive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl Visit for TableFactor {
9797
match self {
9898
Self::Table { name, alias } => {
9999
visitor.pre_visit_relation(name)?;
100-
alias.visit(name)?;
100+
name.visit(visitor)?;
101101
visitor.post_visit_relation(name)?;
102102
alias.visit(visitor)?;
103103
}

0 commit comments

Comments
 (0)