MCPcopy Create free account
hub / github.com/apache/datafusion / print_tsv_no_header

Function print_tsv_no_header

datafusion-cli/src/print_format.rs:288–299  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

286
287 #[test]
288 fn print_tsv_no_header() {
289 let output = PrintBatchesTest::new()
290 .with_format(PrintFormat::Tsv)
291 .with_batches(split_batch(&three_column_batch()))
292 .with_header(WithHeader::No)
293 .run();
294 assert_snapshot!(output, @r"
295 1 4 7
296 2 5 8
297 3 6 9
298 ")
299 }
300
301 #[test]
302 fn print_tsv_with_header() {

Callers

nothing calls this directly

Calls 7

newFunction · 0.85
three_column_batchFunction · 0.85
split_batchFunction · 0.70
runMethod · 0.45
with_headerMethod · 0.45
with_batchesMethod · 0.45
with_formatMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…