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
createtablepublic.t1 (
id bigintprimary key,
value text
);
create materialized view public.mv1as
with sub as changelog frompublic.t1select*from sub;
[2024-09-2717:07:06] [XX000] ERROR: Failed to prepare the statement
[2024-09-2717:07:06] Caused by:
[2024-09-2717:07:06] sql parser error: expected SELECT, VALUES, or a subquery in the query body, found: .
[2024-09-2717:07:06] LINE2: with sub as changelog frompublic.t1
[2024-09-2717:07:06] ^
but bellow will work
create materialized view public.mv1as
with sub as changelog from t1
select*from sub;
this requires that the t1 must be in the search_path
Describe the bug
but bellow will work
this requires that the t1 must be in the search_path
Error message/log
No response
To Reproduce
No response
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
PostgreSQL 13.14.0-RisingWave-2.0.1 (83e9be4)
Additional context
No response
The text was updated successfully, but these errors were encountered: