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
compute-node-0 | thread 'risingwave-streaming-actor' panicked at 'schema check failed on BackfillExecutor: column type mismatched at position 1: expected Some(Int64), found None', src/stream/src/executor/wrapper/schema_check.rs:48:29
To Reproduce
createtablet1(
id bigintprimary key,
i bigint
);
create materialized view mv1 asselect id, i from t1 order by id, i;
insert into t1 values(1, 1);
createtablet2(
id bigintprimary key
);
insert into t2 values(1);
-- the following will yield a panic
create materialized view mv2 asselectmv1.idas id1,
t2.idas id2
from t2 inner join mv1 ont2.id=mv1.id;
Describe the bug
as the title said
Error message/log
To Reproduce
Expected behavior
No response
How did you deploy RisingWave?
docker compose
The version of RisingWave
Additional context
No response
The text was updated successfully, but these errors were encountered: