Any call to regexp_substr with a lookbehind assertion, even a simple SELECT regexp_substr('abc5xyz', '(?<=\D*)\d') fails with Runtime error: out of memory (7). I assume this is simply because lookbehind isn't supported or I used the wrong syntax, but the error is not clear
Any call to
regexp_substr
with a lookbehind assertion, even a simpleSELECT regexp_substr('abc5xyz', '(?<=\D*)\d')
fails withRuntime error: out of memory (7)
. I assume this is simply because lookbehind isn't supported or I used the wrong syntax, but the error is not clear