SqlFunction constructor

SqlFunction(
  1. String name,
  2. List<Sql> args
)

Composes a function call and wraps the result.

Implementation

SqlFunction(String name, List<Sql> args)
  : super(SqlFunction.compose(name, args)) {
  checkState(Sql._reName.hasMatch(name));
}