pub fn pretty_format_compact_batch(
batch: &RecordBatch,
max_width: usize,
max_row_height: usize,
min_compacted_col_width: usize,
) -> Result<impl Display, ArrowError>Expand description
Formats a RecordBatch as a neatly aligned ASCII table,
constraining the total width to max_width. Columns are
dynamically resized or truncated, and columns that cannot
fit within the given width may be dropped.