We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b467100 commit 2993854Copy full SHA for 2993854
src/dataframe.rs
@@ -905,7 +905,7 @@ async fn collect_record_batches_to_display(
905
let mut record_batches = Vec::default();
906
let mut has_more = false;
907
908
- while size_estimate_so_far < max_bytes && rows_so_far < max_rows && rows_so_far < min_rows {
+ while (size_estimate_so_far < max_bytes && rows_so_far < max_rows) || rows_so_far < min_rows {
909
let mut rb = match stream.next().await {
910
None => {
911
break;
0 commit comments