Skip to content

Commit 78be3a8

Browse files
committed
fix type conversion in applyBinaryOp
1 parent 637cac2 commit 78be3a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

evaluator.go

+6
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,12 @@ func applyBinaryOp(op string, a, b interface{}, exp *Expr) interface{} {
336336
return parseNumber(v, exp).(float64)
337337
case int:
338338
return float64(v)
339+
case int32:
340+
return float64(v)
341+
case int64:
342+
return float64(v)
343+
case float32:
344+
return float64(v)
339345
case float64:
340346
return v
341347
default:

0 commit comments

Comments
 (0)