From 94a93327590a803e22b73cdae7cd5fd2a05ed738 Mon Sep 17 00:00:00 2001 From: fzhedu Date: Sun, 23 May 2021 14:47:07 +0800 Subject: [PATCH] rebased --- expression/expression.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expression/expression.go b/expression/expression.go index 06b560f32d7b4..164915102b37f 100644 --- a/expression/expression.go +++ b/expression/expression.go @@ -999,7 +999,7 @@ func scalarExprSupportedByFlash(function *ScalarFunction) bool { case ast.LogicOr, ast.LogicAnd, ast.UnaryNot, ast.BitNeg, ast.Xor, ast.And, ast.Or, ast.GE, ast.LE, ast.EQ, ast.NE, ast.LT, ast.GT, ast.In, ast.IsNull, ast.Like, - ast.Plus, ast.Minus, ast.Div, ast.Mul, /*ast.Mod,*/ + ast.Plus, ast.Minus, ast.Div, ast.Mul, ast.Abs, /*ast.Mod,*/ ast.If, ast.Ifnull, ast.Case, ast.Month, ast.TimestampDiff, ast.DateFormat, ast.FromUnixTime,