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

Method addScalarBuiltin

fe/src/main/java/org/apache/impala/catalog/Db.java:438–441  ·  view source on GitHub ↗

Add a builtin with the specified name and signatures to this db. This defaults to not using a Prepare/Close function.

(String fnName, String symbol, boolean userVisible,
      boolean varArgs, Type retType, Type ... args)

Source from the content-addressed store, hash-verified

436 * This defaults to not using a Prepare/Close function.
437 */
438 public void addScalarBuiltin(String fnName, String symbol, boolean userVisible,
439 boolean varArgs, Type retType, Type ... args) {
440 addScalarBuiltin(fnName, symbol, userVisible, null, null, varArgs, retType, args);
441 }
442
443 /**
444 * Add a builtin with the specified name and signatures to this db.

Callers 1

addNativeMethod · 0.80

Calls 3

isSystemDbMethod · 0.95
addBuiltinMethod · 0.95
createBuiltinMethod · 0.95

Tested by

no test coverage detected