Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
None
-
None
-
None
Description
As discussed in DRILL-4573, the patch of DRILL-4573 would cause regression of query correctness, when the input, encoded as utf-8, contains multi-byte characters.
For example,
select regexp_matches('München', 'München') res3 from (values(1)); +--------+ | res3 | +--------+ | false | +--------+
Here is the result before the patch of DRILL-4573.
select regexp_matches('München', 'München') res3 from (values(1)); +-------+ | res3 | +-------+ | true | +-------+
Once this issue has been resolved, QA would add functional testcases to cover the case of multip-byte characters, so that we will be able to catch such regression in the first place in the future.
Attachments
Issue Links
- relates to
-
DRILL-4573 Zero copy LIKE, REGEXP_MATCHES, SUBSTR
- Closed