return a batch with one column and three rows
()
| 625 | |
| 626 | /// return a batch with one column and three rows |
| 627 | fn one_column_batch() -> RecordBatch { |
| 628 | RecordBatch::try_new( |
| 629 | one_column_schema(), |
| 630 | vec![Arc::new(Int32Array::from(vec![1, 2, 3]))], |
| 631 | ) |
| 632 | .unwrap() |
| 633 | } |
| 634 | |
| 635 | #[test] |
| 636 | fn print_maxrows_limited_wide_table() { |
searching dependent graphs…