We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No response
dev=> create table t(x int); CREATE_TABLE dev=> create materialized view mv as select generate_series(1,x,1) y from t; CREATE_MATERIALIZED_VIEW dev=> create materialized view mv2 as select * from mv order by y limit 5000; CREATE_MATERIALIZED_VIEW dev=> insert into t values (20000); INSERT 0 1
thread 'risingwave-streaming-actor' panicked at 'assertion failed: `(left == right)` left: `904`, right: `5000`', src/common/src/array/stream_chunk.rs:90:13
The text was updated successfully, but these errors were encountered:
ProjectSet produced a large chunk, and TopN failed to handle large chunk & limit correctly, since here's an unused Option:
risingwave/src/stream/src/executor/top_n_executor.rs
Line 129 in d82a95e
Sorry, something went wrong.
Look forward to rust-lang/rust#71368 🤪
We may mark the methods #[must_use] manually for now.
#[must_use]
It's Result<Option<>>. You can't mark it 😄
Result<Option<>>
Successfully merging a pull request may close this issue.
Describe the bug
No response
To Reproduce
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: