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

Function print_automatic_no_header

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

Source from the content-addressed store, hash-verified

356
357 #[test]
358 fn print_automatic_no_header() {
359 let output = PrintBatchesTest::new()
360 .with_format(PrintFormat::Automatic)
361 .with_batches(split_batch(&three_column_batch()))
362 .with_header(WithHeader::No)
363 .run();
364 assert_snapshot!(output, @r"
365 1,4,7
366 2,5,8
367 3,6,9
368 ");
369 }
370 #[test]
371 fn print_automatic_with_header() {
372 let output = PrintBatchesTest::new()

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…