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

Method toPath

fe/src/main/java/org/apache/impala/analysis/TableName.java:141–147  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

139 }
140
141 public List<String> toPath() {
142 List<String> result = Lists.newArrayListWithCapacity(3);
143 if (db_ != null) result.add(db_);
144 result.add(tbl_);
145 if (vTbl_ != null && !vTbl_.isEmpty()) result.add(vTbl_);
146 return result;
147 }
148
149 public static TableName fromThrift(TTableName tableName) {
150 return new TableName(tableName.getDb_name(), tableName.getTable_name());

Callers 15

analyzeWhereClauseMethod · 0.95
readPropertiesFileMethod · 0.45
analyzeMethod · 0.45
collectTableRefsMethod · 0.45
collectTableRefsMethod · 0.45
analyzeMethod · 0.45
collectTableRefsMethod · 0.45
collectTableRefsMethod · 0.45
collectTableRefsMethod · 0.45
analyzeMethod · 0.45
collectTableRefsMethod · 0.45
collectTableRefsMethod · 0.45

Calls 2

addMethod · 0.45
isEmptyMethod · 0.45

Tested by 4

collectTableRefsMethod · 0.36
analyzeMethod · 0.36
collectTableRefsMethod · 0.36