Borderless output with two-space indent. Intended for narrow terminals and log-friendly capture.
--format compact
## Overview `compact` is a borderless variant of the table renderer, designed for narrow terminals, CI log capture, and cases where box-drawing characters are undesirable. It reuses the same layout engine, header styling, numeric alignment, and NULL handling as `table`, but drops the Unicode borders and indents each line by two spaces. ## Behavior - Loads the comfy-table `NOTHING` preset, which removes all horizontal and vertical border characters. Only column padding remains between cells. - Every output line (headers and rows) is prefixed with two spaces before being written to stdout. - Header cells keep bold cyan styling. Numeric columns remain right-aligned. `NULL` is still printed dim and italic. - Column widths use the same `Dynamic` content arrangement as the table renderer, so long values wrap inside the cell onto additional lines. - The footer format, row cap behaviour, and truncation message are identical to `table`: `(<row_count> rows, <elapsed>ms)` or `(showing <max_rows> of <row_count> rows, <elapsed>ms)` when truncated. - An empty-column result prints `(no columns)`.
delta-forge-cli --format compact query SELECT * FROM orders LIMIT 5
delta-forge-cli --format compact run report.sql