dolthub / go-mysql-server

A MySQL-compatible relational database with a storage agnostic query engine. Implemented in pure Go.
Apache License 2.0
2.32k stars 199 forks source link

Fixed REGEXP #2594

Closed Hydrocharged closed 1 month ago

Hydrocharged commented 1 month ago

This fixes the case-sensitivity issue found in: https://github.com/dolthub/dolt/issues/8117

Although we had moved REGEXP_LIKE to the ICU engine, we forgot to also move REGEXP, which is a synonym for REGEXP_LIKE according to the docs. This makes that change, and also completely removes all remnants of the old regex code.