Skip to content

0.21.10

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Feb 17:51
· 8 commits to main since this release

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)