You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
If you edit /etc/config.properties you can set a regex-library flag to a value of JONI (the default) or RE2J. Setting it to RE2J and doing dbt run results in:
There are some extremely vague docs here and the project github (I assume!) is here. The presto docs are a little incomplete, at best - they don't really make any effort to explain that some valid JONI patterns aren't allowed. The presto page gives this list of caveats. I believe the issue is with Matcher.requireEnd(), but regardless that's quite a list!
I think we should enable RE2J in our test image, because I think RE2J's regex pattern support is a strict subset of JONI's. Then we should fix the bugs, there's at least one!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If you edit
/etc/config.properties
you can set aregex-library
flag to a value ofJONI
(the default) orRE2J
. Setting it toRE2J
and doingdbt run
results in:There are some extremely vague docs here and the project github (I assume!) is here. The presto docs are a little incomplete, at best - they don't really make any effort to explain that some valid
JONI
patterns aren't allowed. The presto page gives this list of caveats. I believe the issue is withMatcher.requireEnd()
, but regardless that's quite a list!I think we should enable
RE2J
in our test image, because I thinkRE2J
's regex pattern support is a strict subset ofJONI
's. Then we should fix the bugs, there's at least one!The text was updated successfully, but these errors were encountered: