Skip to content

Commit

Permalink
align to master
Browse files Browse the repository at this point in the history
  • Loading branch information
SunRunAway committed Apr 29, 2020
1 parent 02fcd0b commit b9b3291
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions expression/builtin_op.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,11 @@ func (c *logicXorFunctionClass) getFunction(ctx sessionctx.Context, args []Expre
if err != nil {
return nil, err
}
args[0], err = wrapWithIsTrue(ctx, true, args[0])
args[0], err = wrapWithIsTrue(ctx, true, args[0], false)
if err != nil {
return nil, errors.Trace(err)
}
args[1], err = wrapWithIsTrue(ctx, true, args[1])
args[1], err = wrapWithIsTrue(ctx, true, args[1], false)
if err != nil {
return nil, errors.Trace(err)
}
Expand Down

0 comments on commit b9b3291

Please sign in to comment.