Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.10.0
Description
The following SQL can trigger the issue:
create table foo (d decimal(15,8)); insert into foo values (cast('123.123' as decimal(15,8))); select * from foo where d>cast('123456789.123' as decimal(15,8));