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

Method get

fe/src/main/java/org/apache/impala/analysis/FromClause.java:264–264  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

262 public Iterator<TableRef> iterator() { return tableRefs_.iterator(); }
263 public int size() { return tableRefs_.size(); }
264 public TableRef get(int i) { return tableRefs_.get(i); }
265 public void set(int i, TableRef tableRef) { tableRefs_.set(i, tableRef); }
266 public void add(TableRef t) { tableRefs_.add(t); }
267 public void add(int i, TableRef t) { tableRefs_.add(i, t); }

Callers 2

resolveTableMaskMethod · 0.95
resetMethod · 0.95

Calls 1

getMethod · 0.65

Tested by

no test coverage detected