Skip to content

Commit

Permalink
fix ident walker to use bool and date types
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacov committed Feb 22, 2020
1 parent 5f86033 commit d1a38f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v5/pkg/walkers/ident/walk.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func Walk(n tsl.Node, checkColumnName func(string) (string, error)) (tsl.Node, e
}

return n, err
case tsl.StringOp, tsl.NumberOp:
case tsl.StringOp, tsl.NumberOp, tsl.BooleanOp, tsl.DateOp:
// This are our leafs.
return n, nil
default:
Expand Down

0 comments on commit d1a38f9

Please sign in to comment.