We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3ba20 commit bfb10c3Copy full SHA for bfb10c3
wren-core-py/tests/test_modeling_core.py
@@ -106,7 +106,7 @@ def test_read_function_list():
106
path = "tests/functions.csv"
107
session_context = SessionContext(manifest_str, path)
108
functions = session_context.get_available_functions()
109
- assert len(functions) == 273
+ assert len(functions) == 275
110
111
rewritten_sql = session_context.transform_sql(
112
"SELECT add_two(c_custkey) FROM my_catalog.my_schema.customer"
@@ -118,7 +118,7 @@ def test_read_function_list():
118
119
session_context = SessionContext(manifest_str, None)
120
121
- assert len(functions) == 271
+ assert len(functions) == 273
122
123
124
def test_get_available_functions():
0 commit comments