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

Method Path

fe/src/main/java/org/apache/impala/analysis/Path.java:183–190  ·  view source on GitHub ↗

Constructs a Path rooted at the given rootDesc.

(TupleDescriptor rootDesc, List<String> rawPath)

Source from the content-addressed store, hash-verified

181 * Constructs a Path rooted at the given rootDesc.
182 */
183 public Path(TupleDescriptor rootDesc, List<String> rawPath) {
184 Preconditions.checkNotNull(rootDesc);
185 Preconditions.checkNotNull(rawPath);
186 rootTable_ = rootDesc.getTable();
187 rootDesc_ = rootDesc;
188 rootPath_ = null;
189 rawPath_ = rawPath;
190 }
191
192 /**
193 * Constructs a Path rooted at the given rootTable.

Callers

nothing calls this directly

Calls 5

addAllMethod · 0.80
getTableMethod · 0.65
isResolvedMethod · 0.45
sizeMethod · 0.45
getRawPathMethod · 0.45

Tested by

no test coverage detected