Skip to content

Commit

Permalink
Merge pull request #49 from jchanam/fix-join-using
Browse files Browse the repository at this point in the history
Add a case for a NamedColumnsJoin in the walker
  • Loading branch information
akito0107 authored May 23, 2022
2 parents 1a8cf1f + 8b0d328 commit 0613c06
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sqlast/walk.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ func Walk(v Visitor, node Node) {
Walk(v, n.Ref)
case *JoinType:
// nothing to do
case *NamedColumnsJoin:
// nothing to do
case *JoinCondition:
Walk(v, n.SearchCondition)
case *NaturalJoin:
Expand Down

0 comments on commit 0613c06

Please sign in to comment.