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

Function ChunkCSVEscapedBlock

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

Source from the content-addressed store, hash-verified

106}
107
108static void ChunkCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference
109 auto csv = BuildCSVData(escaped_example);
110 auto options = ParseOptions::Defaults();
111 options.quoting = false;
112 options.escaping = true;
113 options.newlines_in_values = true;
114
115 BenchmarkCSVChunking(state, csv, options);
116}
117
118static void ChunkCSVNoNewlinesBlock(
119 benchmark::State& state) { // NOLINT non-const reference

Callers

nothing calls this directly

Calls 3

BuildCSVDataFunction · 0.85
BenchmarkCSVChunkingFunction · 0.85
DefaultsFunction · 0.50

Tested by

no test coverage detected