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
Not sure if it is expected because of some coner case or it is a bug. will invesitage it later.
dev=> create table t(v int, ts timestamptz);
CREATE_TABLE
dev=> create table mock_time(now timestamp);
CREATE_TABLE
dev=> create materialized view mv asselect*from t where ts > (selectmax(now) from mock_time);
ERROR: Failed to run the query
Caused by:
Not supported: streaming nested-loop join
HINT: The non-equal joinin the query requires a nested-loop join executor, which could be very expensive to run. Consider rewriting the query to use dynamic filter as a substitute if possible.
See also: https://docs.risingwave.com/docs/current/sql-pattern-dynamic-filters/
The text was updated successfully, but these errors were encountered:
Not sure if it is expected because of some coner case or it is a bug. will invesitage it later.
The text was updated successfully, but these errors were encountered: