@@ -53,16 +53,16 @@ async def test_function_list(client):
53
53
response = await client .get (url = f"{ base_url } /functions" )
54
54
assert response .status_code == 200
55
55
result = response .json ()
56
- # 437 is the number of functions in `resources/function_list/duckdb.csv` file excluded the default functions in DataFusion.
57
- assert len (result ) == DATAFUSION_FUNCTION_COUNT + 437
58
- the_func = next (filter (lambda x : x ["name" ] == "array_length " , result ))
56
+ # 429 is the number of functions in `resources/function_list/duckdb.csv` file excluded the default functions in DataFusion.
57
+ assert len (result ) == DATAFUSION_FUNCTION_COUNT + 429
58
+ the_func = next (filter (lambda x : x ["name" ] == "regexp_escape " , result ))
59
59
assert the_func == {
60
- "name" : "array_length " ,
61
- "description" : "Returns the length of the list. " ,
60
+ "name" : "regexp_escape " ,
61
+ "description" : "Escapes all potentially meaningful regexp characters in the input string " ,
62
62
"function_type" : "scalar" ,
63
- "param_names" : "list,col1 " ,
64
- "param_types" : "array,bigint " ,
65
- "return_type" : "bigint " ,
63
+ "param_names" : "string " ,
64
+ "param_types" : "Utf8 " ,
65
+ "return_type" : "Utf8 " ,
66
66
}
67
67
68
68
config .set_remote_function_list_path (None )
0 commit comments