registerFunctionHandler method

void registerFunctionHandler(
  1. FunctionHandler handler
)

Registers the handler, which can provide implementations for additional sql functions that can then be used in statements analyzed through this engine.

Implementation

void registerFunctionHandler(FunctionHandler handler) {
  options.addFunctionHandler(handler);
}