Does anyone have same issue and know solution for this?
Dataform version : 2.6.0
Hi Toyoshi,
I am also having the same issue and haven't been able to find a solution. I've raised issue #1514 on GitHub, so hopefully we'll hear back soon.
Hello
Thanks for raising issue. Now I can produce the bug with this simple example.
config {
type: "incremental"
, schema: "dp_stage_dev"
}
select
current_timestamp() as event_timestamp
, regexp_extract("test\?text\?test", r"\?.*\?") as text_col
If you run the code with "Run with full refresh", no errors. But without it you get error.
Apparently one of error triggers is to meet the following conditions.
- use raw string (r"...") for regexp-function's argument
- use escape for the raw string (e.g. r"...\...")
I also found some other triggers but this is one of the most critical one...
Just to update you that we are aware of the issue and are currently working on rolling out a fix for this
@lewish Could you provide an estimate for this fix? Thank you!
hi @lewish Do you have any updates? Thank you for your help.