github nalgeon/sqlean 0.21.10

latest release: 0.22.0
3 months ago

Print the actual error message when regexp compilation fails (#104).

Before:

select regexp_substr('abc5xyz', 'a(?<=\D*)\d');
-- Runtime error: out of memory (7)

Now:

select regexp_substr('abc5xyz', 'a(?<=\D*)\d');
-- Runtime error: lookbehind assertion is not fixed length (offset 1)

Don't miss a new sqlean release

NewReleases is sending notifications on new releases.