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

Function MakeCSVData

cpp/src/arrow/csv/test_common.cc:25–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23namespace csv {
24
25std::string MakeCSVData(std::vector<std::string> lines) {
26 std::string s;
27 for (const auto& line : lines) {
28 s += line;
29 }
30 return s;
31}
32
33void MakeCSVParser(std::vector<std::string> lines, ParseOptions options, int32_t num_cols,
34 MemoryPool* pool, std::shared_ptr<BlockParser>* out) {

Callers 4

TEST_PFunction · 0.85
MakeCSVParserFunction · 0.85
TESTFunction · 0.85
MakeLotsOfCsvColumnsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected