MCPcopy Create free account
hub / github.com/apache/arrow / WriteCsvStringNoQuote

Function WriteCsvStringNoQuote

cpp/src/arrow/csv/writer_benchmark.cc:120–123  ·  view source on GitHub ↗

Exercise QuotedColumnPopulator with string (without quote)

Source from the content-addressed store, hash-verified

118
119// Exercise QuotedColumnPopulator with string (without quote)
120void WriteCsvStringNoQuote(benchmark::State& state) {
121 auto batch = MakeStrTestBatch(kCsvRows, kCsvCols, /*quote=*/false, state.range(0));
122 BenchmarkWriteCsv(state, WriteOptions::Defaults(), *batch);
123}
124
125// Exercise QuotedColumnPopulator with string (with quote)
126void WriteCsvStringWithQuote(benchmark::State& state) {

Callers

nothing calls this directly

Calls 3

MakeStrTestBatchFunction · 0.85
BenchmarkWriteCsvFunction · 0.85
DefaultsFunction · 0.50

Tested by

no test coverage detected