Skip to content

Commit e6c20d1

Browse files
committed
fix the tests for local_file
1 parent 33cf387 commit e6c20d1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ibis-server/tests/routers/v3/connector/local_file/test_functions.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ async def test_function_list(client):
5353
response = await client.get(url=f"{base_url}/functions")
5454
assert response.status_code == 200
5555
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))
5959
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",
6262
"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",
6666
}
6767

6868
config.set_remote_function_list_path(None)

0 commit comments

Comments
 (0)