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

Function PrintTableList

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

Source from the content-addressed store, hash-verified

344}
345
346string PrintTableList(const vector<TTableName>& tbls) {
347 stringstream ss;
348 for (int i = 0; i < tbls.size(); ++i) {
349 if (i != 0) ss << ",";
350 ss << tbls[i].db_name << "." << tbls[i].table_name;
351 }
352 return ss.str();
353}
354
355string GetBuildVersion(bool compact) {
356 stringstream ss;

Callers 5

ExecMethod · 0.85
ExecQueryOrDmlRequestMethod · 0.85
MaterializeNextTupleMethod · 0.85

Calls 2

sizeMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected