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

Function ChunkCSVQuotedBlock

cpp/src/arrow/csv/parser_benchmark.cc:98–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98static void ChunkCSVQuotedBlock(benchmark::State& state) { // NOLINT non-const reference
99 auto csv = BuildCSVData(quoted_example);
100 auto options = ParseOptions::Defaults();
101 options.quoting = true;
102 options.escaping = false;
103 options.newlines_in_values = true;
104
105 BenchmarkCSVChunking(state, csv, options);
106}
107
108static void ChunkCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference
109 auto csv = BuildCSVData(escaped_example);

Callers

nothing calls this directly

Calls 3

BuildCSVDataFunction · 0.85
BenchmarkCSVChunkingFunction · 0.85
DefaultsFunction · 0.50

Tested by

no test coverage detected