We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 412ab3a commit 9a1f59fCopy full SHA for 9a1f59f
1 file changed
src/dataframe.rs
@@ -902,6 +902,7 @@ async fn collect_record_batches_to_display(
902
let mut record_batches = Vec::default();
903
let mut has_more = false;
904
905
+ // ensure minimum rows even if memory/row limits are hit
906
while (size_estimate_so_far < max_bytes && rows_so_far < repr_rows) || rows_so_far < min_rows {
907
let mut rb = match stream.next().await {
908
None => {
0 commit comments