We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa49730 commit 7ffae19Copy full SHA for 7ffae19
ibis-server/tests/routers/v3/connector/local_file/test_functions.py
@@ -53,8 +53,8 @@ async def test_function_list(client):
53
response = await client.get(url=f"{base_url}/functions")
54
assert response.status_code == 200
55
result = response.json()
56
- # 438 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 + 438
+ # 437 is the number of functions in `resources/function_list/duckdb.csv` file excluded the default functions in DataFusion.
+ assert len(result) == DATAFUSION_FUNCTION_COUNT + 437
58
the_func = next(filter(lambda x: x["name"] == "array_length", result))
59
assert the_func == {
60
"name": "array_length",
0 commit comments