Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
Impala 2.11.0
-
ghx-label-6
Description
The following series of commands does not result in an error or a warning when decimal_v2 is enabled.
set decimal_v2=1; create table t1 (c1 decimal(38,37)); insert into t1 select 11.11;
We end up inserting a NULL into the column without any warnings.
If these commands are executed with decimal_v2 disabled, we get the following warning:
WARNINGS: UDF WARNING: Decimal expression overflowed, returning NULL
Attachments
Issue Links
- breaks
-
IMPALA-7211 Query with a decimal between predicate needlessly fails
- Resolved