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

Function AssertParseFinal

cpp/src/arrow/csv/parser_test.cc:161–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

159}
160
161void AssertParseFinal(BlockParser& parser, const std::string& str) {
162 uint32_t parsed_size = static_cast<uint32_t>(-1);
163 ASSERT_OK(ParseFinal(parser, str, &parsed_size));
164 ASSERT_EQ(parsed_size, str.size());
165}
166
167void AssertParseFinal(BlockParser& parser, const std::vector<std::string_view>& data) {
168 uint32_t parsed_size = static_cast<uint32_t>(-1);

Callers 1

TESTFunction · 0.85

Calls 4

ParseFinalFunction · 0.85
TotalViewLengthFunction · 0.85
ParseFinalMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected