go-mysql-server
go-mysql-server copied to clipboard
REGEXP_LIKE collation support
We need to implement full regex parsing to support REGEXP_LIKE. MySQL implements it on top of icu, which may also be the best path forward for us to ensure exact compatibility when it comes to regex parsing. Our difficulties come from the language barrier, so we may need to create a wrapper via CGo (unsure of the portability of this approach), or reimplement the regex portion in Go.