Skip to content

Commit 35ad6e7

Browse files
Remove unused isCaseSensitive constructor parameter from SqlFunctionCatalogImpl
1 parent 9ac2b5e commit 35ad6e7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fdb-relational-core/src/main/java/com/apple/foundationdb/relational/recordlayer/query/functions/SqlFunctionCatalogImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ final class SqlFunctionCatalogImpl implements SqlFunctionCatalog {
5050
@Nonnull
5151
private final UserDefinedFunctionCatalog userDefinedFunctionCatalog;
5252

53-
private SqlFunctionCatalogImpl(boolean isCaseSensitive) {
53+
private SqlFunctionCatalogImpl() {
5454
this.userDefinedFunctionCatalog = new UserDefinedFunctionCatalog();
5555
}
5656

@@ -166,7 +166,7 @@ private static ImmutableMap<String, Function<Integer, Optional<BuiltInFunction<?
166166
@Nonnull
167167
public static SqlFunctionCatalogImpl newInstance(@Nonnull final RecordLayerSchemaTemplate metadata,
168168
boolean isCaseSensitive) {
169-
final var functionCatalog = new SqlFunctionCatalogImpl(isCaseSensitive);
169+
final var functionCatalog = new SqlFunctionCatalogImpl();
170170
metadata.getInvokedRoutines().forEach(func ->
171171
functionCatalog.registerUserDefinedFunction(
172172
Assert.notNullUnchecked(func.getName()),

0 commit comments

Comments
 (0)