Evaluation error leading to skipped row rather than null column for generate_series
stopping now
#17489
Labels
Milestone
8000
generate_series
stopping now
#17489
Describe the bug
When the underlying source is a table:
The first mv fills
null
on each input row, while the second mv detects the constant error. This makes sense.However, when the underlying source is the newly introduced
generate_series(..., now(), ...)
:In the former case, it fills
null
same as table above. But in the latter constant case, no error was returned and no rows withnull
s are updated into the mv.Error message/log
No response
To Reproduce
See description above.
Expected behavior
Either an immediate error, or 6 rows with
null
.How did you deploy RisingWave?
No response
The version of RisingWave
No response
Additional context
Inspired by #17461: after the column pruning fix, a constant error
date 't'
leads to an empty mv rather than an error or mv with 6 rows ofnull
s.The text was updated successfully, but these errors were encountered: