Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
Impala 4.3.0
-
None
-
ghx-label-4
Description
ILIKE and IREGEXP's backend implementation does not set the case-insensitive flag when the argument value is non-constant.
Example:
create table ilike_test (x string, y string); insert into ilike_test values ('ABC','b'); select x ilike concat('%', y, '%') from ilike_test;