[FIX](literal) fix expression literal error #29157
This commit is contained in:
@ -278,8 +278,10 @@ public enum ExpressionFunctions {
|
||||
LiteralExpr[] exprs;
|
||||
if (argType.isStringType()) {
|
||||
exprs = new StringLiteral[args.size()];
|
||||
} else if (argType.isFixedPointType()) {
|
||||
} else if (argType.isIntegerType()) {
|
||||
exprs = new IntLiteral[args.size()];
|
||||
} else if (argType.isLargeIntType()) {
|
||||
exprs = new LargeIntLiteral[args.size()];
|
||||
} else if (argType.isDateType()) {
|
||||
exprs = new DateLiteral[args.size()];
|
||||
} else if (argType.isDecimalV2() || argType.isDecimalV3()) {
|
||||
|
||||
Reference in New Issue
Block a user