Skip to content

Commit 0e9b519

Browse files
committed
Fix typo
1 parent cdf72af commit 0e9b519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clickhouse-jdbc/src/main/java/com/clickhouse/jdbc/ClickHouseDatabaseMetaData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1266,7 +1266,7 @@ public ResultSet getFunctions(String catalog, String schemaPattern, String funct
12661266
+ "1 as FUNCTION_TYPE, name as SPECIFIC_NAME from system.functions\n"
12671267
+ "where alias_to = '' and name like :pattern order by name union all\n"
12681268
+ "select null as FUNCTION_CAT, 'system' as FUNCTION_SCHEM, name as FUNCTION_NAME,\n"
1269-
+ "'case-sensistive table function' as REMARKS, 2 as FUNCTION_TYPE, name as SPECIFIC_NAME from system.table_functions\n"
1269+
+ "'case-sensitive table function' as REMARKS, 2 as FUNCTION_TYPE, name as SPECIFIC_NAME from system.table_functions\n"
12701270
+ "order by name) where :filter",
12711271
params);
12721272
return query(sql);

0 commit comments

Comments
 (0)