mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
Fixes #552 In our construct regex function, we were not escaping the required characters properly which was causing the failure. Limbo output with this branch ``` limbo> select like('\%A', '\A'); 1 limbo> select like('A$%', 'A$'); 1 limbo> select like('%a.a', 'aaaa'); 0 ``` Closes #553