Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fix compile error after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-chen committed Jan 15, 2021
1 parent ab096ad commit d7526fd
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -102,7 +102,7 @@ private static FunctionResolver isNotNull() {

private static FunctionResolver ifNull() {
FunctionName functionName = BuiltinFunctionName.IFNULL.getName();
List<ExprType> typeList = ExprCoreType.coreTypes();
List<ExprCoreType> typeList = ExprCoreType.coreTypes();

List<SerializableFunction<FunctionName, org.apache.commons.lang3.tuple.Pair<FunctionSignature,
FunctionBuilder>>> functionsOne = typeList.stream().map(v ->
Expand All @@ -121,7 +121,7 @@ private static FunctionResolver ifNull() {

private static FunctionResolver nullIf() {
FunctionName functionName = BuiltinFunctionName.NULLIF.getName();
List<ExprType> typeList = ExprCoreType.coreTypes();
List<ExprCoreType> typeList = ExprCoreType.coreTypes();

FunctionResolver functionResolver =
FunctionDSL.define(functionName,
Expand Down

0 comments on commit d7526fd

Please sign in to comment.