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

Function ParseCSVQuotedBlock

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

Source from the content-addressed store, hash-verified

190}
191
192static void ParseCSVQuotedBlock(benchmark::State& state) { // NOLINT non-const reference
193 auto options = ParseOptions::Defaults();
194 options.quoting = true;
195 options.escaping = false;
196
197 BenchmarkCSVParsing(state, quoted_example, options);
198}
199
200static void ParseCSVEscapedBlock(benchmark::State& state) { // NOLINT non-const reference
201 auto options = ParseOptions::Defaults();

Callers

nothing calls this directly

Calls 2

BenchmarkCSVParsingFunction · 0.85
DefaultsFunction · 0.50

Tested by

no test coverage detected