Fixed Issues in Impala
Review the list of Impala issues that are resolved in Cloudera Runtime 7.3.1.
- CDPD-69856: SIGSEGV crash while accessing query state from concurrent access during query execution
- A crash can occur due to concurrent updates and reads of execution state, such as through the WebUI, during query processing.
- Incorrect length when inserting multiple CHAR(N) values
- When all values in a
VALUES
clause column are of typeCHAR
, but have differing lengths, Impala selects a commonCHAR(max(lengths))
type, padding shorter values with spaces. This padding can lead to unexpected results if the destination column isVARCHAR
orSTRING
, as inserting the values individually would not produce the same padded output. - Type mismatch in set operations with ALLOW_UNSAFE_CASTS enabled
- The fix ensures that string literals are converted to numeric
types correctly by considering the target type when ALLOW_UNSAFE_CASTS is
enabled.
Apache Jira: IMPALA-12285