MCPcopy Create free account
hub / github.com/bytedance/bolt / testModeString

Function testModeString

bolt/exec/tests/TableWriteTest.cpp:73–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71};
72
73std::string testModeString(TestMode mode) {
74 switch (mode) {
75 case TestMode::kUnpartitioned:
76 return "UNPARTITIONED";
77 case TestMode::kPartitioned:
78 return "PARTITIONED";
79 case TestMode::kBucketed:
80 return "BUCKETED";
81 case TestMode::kOnlyBucketed:
82 return "BUCKETED (NOT PARTITIONED)";
83 default:
84 return "UNKNOWN";
85 }
86}
87
88static std::shared_ptr<core::AggregationNode> generateAggregationNode(
89 const std::string& name,

Callers 2

TableWriteTest.cppFile · 0.85
toStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected