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

Function PrintSubPath

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

Source from the content-addressed store, hash-verified

324}
325
326string PrintSubPath(const TableDescriptor& tbl_desc, const SchemaPath& path,
327 int end_path_idx) {
328 DCHECK_GE(end_path_idx, 0);
329 SchemaPath::const_iterator subpath_end = path.begin() + end_path_idx + 1;
330 SchemaPath subpath(path.begin(), subpath_end);
331 return PrintPath(tbl_desc, subpath);
332}
333
334string PrintNumericPath(const SchemaPath& path) {
335 stringstream ss;

Callers 4

ResolveArrayMethod · 0.85
ResolveMapMethod · 0.85
ResolveStructMethod · 0.85
ValidateScalarNodeMethod · 0.85

Calls 2

PrintPathFunction · 0.85
beginMethod · 0.45

Tested by

no test coverage detected