Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
gernest committed Dec 7, 2023
1 parent 5931f8f commit 739363b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion query/logicalplan/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (e *ExprValidationError) Error() string {
message := make([]string, 0)
message = append(message, e.message)
message = append(message, ": ")
message = append(message, fmt.Sprintf("%s", e.expr))
message = append(message, e.expr.String())
for _, child := range e.children {
message = append(message, "\n -> invalid sub-expression: ")
message = append(message, child.Error())
Expand Down

0 comments on commit 739363b

Please sign in to comment.