MCPcopy Create free account
hub / github.com/apache/impala / PrintNumericPath

Function PrintNumericPath

be/src/util/debug-util.cc:334–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333
334string PrintNumericPath(const SchemaPath& path) {
335 stringstream ss;
336 ss << "[";
337 if (path.size() > 0) ss << path[0];
338 for (int i = 1; i < path.size(); ++i) {
339 ss << " ";
340 ss << path[i];
341 }
342 ss << "]";
343 return ss.str();
344}
345
346string PrintTableList(const vector<TTableName>& tbls) {
347 stringstream ss;

Callers 2

TranslateColPathsMethod · 0.85
PrintPathFunction · 0.85

Calls 2

sizeMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected