[#8682] Correctly parse SQL Server LOG() function
This commit is contained in:
parent
635cbc1874
commit
8b4e41dacf
@ -6097,9 +6097,9 @@ final class ParserImpl implements Parser {
|
||||
|
||||
|
||||
default:
|
||||
base = toField(ctx, parseNumericOp(ctx, N));
|
||||
Field<?> base = toField(ctx, parseNumericOp(ctx, N));
|
||||
parse(ctx, ',');
|
||||
value = toField(ctx, parseNumericOp(ctx, N));
|
||||
Field<?> value = toField(ctx, parseNumericOp(ctx, N));
|
||||
parse(ctx, ')');
|
||||
return log((Field) value, (Field) base);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user