mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Fix typo in sqlparser-derive
README (#1310)
This commit is contained in:
parent
f77192d4ec
commit
66b4ec8486
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ impl Visit for TableFactor {
|
|||
match self {
|
||||
Self::Table { name, alias } => {
|
||||
visitor.pre_visit_relation(name)?;
|
||||
alias.visit(name)?;
|
||||
name.visit(visitor)?;
|
||||
visitor.post_visit_relation(name)?;
|
||||
alias.visit(visitor)?;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue