We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbb1e55 commit d9cc87cCopy full SHA for d9cc87c
examples/datafusion-ffi-example/python/tests/_test_type_checking.py
@@ -1,4 +1,7 @@
1
-from datafusion import SessionContext, udf, udaf
+from datafusion import SessionContext, udaf
2
from geodatafusion import native
3
-ctx = SessionContext()
4
-ctx.register_udaf(udaf(native.Extent()))
+
5
+def test_udaf_accepts_capsule() -> None:
6
+ ctx = SessionContext()
7
+ ctx.register_udaf(udaf(native.Extent()))
0 commit comments