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
QueryResult
Clickhouse returns only the a single block with num_rows == 0 when do SELECT over an empty table.
num_rows == 0
SELECT
In such case, QueryResult::stream_blocks skips the first block, which's the only block containing infos.
QueryResult::stream_blocks
The test passes because that fetch_all doesn't skip the first block.
fetch_all
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Clickhouse returns only the a single block with
num_rows == 0
when doSELECT
over an empty table.In such case,
QueryResult::stream_blocks
skips the first block, which's the only block containing infos.The test passes because that
fetch_all
doesn't skip the first block.The text was updated successfully, but these errors were encountered: