Skip to content

Commit

Permalink
Correct BuildIN to BuiltIn
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo committed Jun 5, 2024
1 parent 4245844 commit bae05b8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ public BuiltInTypeAndFunctionNamespaceManager(
.expireAfterWrite(1, HOURS)
.build(CacheLoader.from(this::instantiateParametricType));

registerBuiltInFunctions(getBuildInFunctions(featuresConfig));
registerBuiltInFunctions(getBuiltInFunctions(featuresConfig));
registerBuiltInTypes();

for (Type type : requireNonNull(types, "types is null")) {
Expand Down Expand Up @@ -664,7 +664,7 @@ private void registerBuiltInTypes()
addParametricType(VARCHAR_ENUM);
}

private List<? extends SqlFunction> getBuildInFunctions(FeaturesConfig featuresConfig)
private List<? extends SqlFunction> getBuiltInFunctions(FeaturesConfig featuresConfig)
{
FunctionListBuilder builder = new FunctionListBuilder()
.window(RowNumberFunction.class)
Expand Down

0 comments on commit bae05b8

Please sign in to comment.