Skip to content

Commit b124089

Browse files
author
James Cor
committed
fix
1 parent f90a57e commit b124089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/analyzer/indexed_joins.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ func convertAntiToLeftJoin(m *memo.Memo) error {
574574
sch := srcNode.Schema()
575575
var table sql.Table
576576
var node sql.Node = srcNode
577-
if ta, ok := srcNode.(*plan.TableAlias); ok {
577+
if ta, ok := node.(*plan.TableAlias); ok {
578578
node = ta.Child
579579
}
580580
if tw, ok := node.(sql.TableNode); ok {

0 commit comments

Comments
 (0)