Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ibis-server/resources/white_function_list/bigquery.csv
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ scalar,current_date,date,,,"Returns the current date"
scalar,sha256,bytes,,,"Returns the SHA-256 hash of a string"
scalar,lpad,string,,,"Pads a string on the left with specified characters"
scalar,cbrt,float64,,,"Returns the cube root of a number"
scalar,to_char,string,,,"Converts a value to a character string"
scalar,array_cat,array,,,"Concatenates two arrays"
scalar,ifnull,string,,,"Returns the first non-null value"
aggregate,covar_pop,float64,,,"Returns the population covariance"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def test_function_list(client):
response = await client.get(url=f"{base_url}/functions")
assert response.status_code == 200
result = response.json()
assert len(result) == 174
assert len(result) == 173
the_func = next(
filter(
lambda x: x["name"] == "string_agg",
Expand Down