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

Function PrintTo

cpp/src/arrow/acero/test_util_internal.cc:559–577  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

557}
558
559void PrintTo(const Declaration& decl, std::ostream* os) {
560 *os << decl.factory_name;
561
562 if (decl.label != decl.factory_name) {
563 *os << ":" << decl.label;
564 }
565
566 *os << "<";
567 PrintToImpl(decl.factory_name, *decl.options, os);
568 *os << ">";
569
570 *os << "{";
571 for (const auto& input : decl.inputs) {
572 if (auto idecl = std::get_if<Declaration>(&input)) {
573 PrintTo(*idecl, os);
574 }
575 }
576 *os << "}";
577}
578
579Result<std::shared_ptr<Table>> MakeRandomTimeSeriesTable(
580 const TableGenerationProperties& properties) {

Callers 1

PrintToImplFunction · 0.70

Calls 1

PrintToImplFunction · 0.85

Tested by

no test coverage detected