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

Method getFunction

fe/src/main/java/org/apache/impala/catalog/Db.java:316–323  ·  view source on GitHub ↗
(Function desc, Function.CompareMode mode)

Source from the content-addressed store, hash-verified

314 * See comment in Catalog.
315 */
316 @Override // FeDb
317 public Function getFunction(Function desc, Function.CompareMode mode) {
318 synchronized (functions_) {
319 List<Function> fns = functions_.get(desc.functionName());
320 if (fns == null) return null;
321 return FunctionUtils.resolveFunction(fns, desc, mode);
322 }
323 }
324
325 public Function getFunction(String signatureString) {
326 synchronized (functions_) {

Callers 9

addFunctionMethod · 0.95
removeFunctionMethod · 0.95
refreshFunctionsMethod · 0.95
invalidateDbMethod · 0.95
getFunctionMethod · 0.95
addFunctionMethod · 0.95
removeFunctionMethod · 0.95
addBuiltinMethod · 0.95

Calls 5

resolveFunctionMethod · 0.95
functionNameMethod · 0.80
signatureStringMethod · 0.80
getMethod · 0.65
equalsMethod · 0.45

Tested by 1