Skip to content

Commit

Permalink
Fix default AstVisitor.visitRow implementation
Browse files Browse the repository at this point in the history
Row is an Expression, so it should delegate to visitExpression
instead of jumping directly to visitNode
  • Loading branch information
martint committed Jun 19, 2019
1 parent b669b57 commit f761c13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ protected R visitValues(Values node, C context)

protected R visitRow(Row node, C context)
{
return visitNode(node, context);
return visitExpression(node, context);
}

protected R visitTableSubquery(TableSubquery node, C context)
Expand Down

0 comments on commit f761c13

Please sign in to comment.