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
Credit @stdrc for finding this.
Consider case where rate_limit=1. Then we have an update record. That corresponds to 2 rows. In such a scenario we need to just emit the entire chunk.
let n = NonZeroU32::new(chunk.cardinality() as u32).unwrap(); // Ditto. limiter.until_n_ready(n).await.unwrap();
TODO(kwannoel): Also test the append record code, to make sure that the update record is not split on calling StreamChunk::split / DataChunk::split.
StreamChunk::split / DataChunk::split
The text was updated successfully, but these errors were encountered:
Update
stdrc
Successfully merging a pull request may close this issue.
Credit @stdrc for finding this.
Consider case where rate_limit=1. Then we have an update record. That corresponds to 2 rows.
In such a scenario we need to just emit the entire chunk.
TODO(kwannoel): Also test the append record code, to make sure that the update record is not split on calling
StreamChunk::split / DataChunk::split
.The text was updated successfully, but these errors were encountered: