Skip to content
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.

Commit

Permalink
function: correctly transform up explode nodes (#765)
Browse files Browse the repository at this point in the history
function: correctly transform up explode nodes
  • Loading branch information
ajnavarro committed Jun 24, 2019
2 parents 296f3ed + 1623718 commit bc23348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/expression/function/explode.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (e *Explode) String() string {

// TransformUp implements the sql.Expression interface.
func (e *Explode) TransformUp(f sql.TransformExprFunc) (sql.Expression, error) {
c, err := f(e.Child)
c, err := e.Child.TransformUp(f)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit bc23348

Please sign in to comment.