Function
udf
(
*,
return_type: Any = None,
deterministic: bool = False,
propagate_none: bool = False,
executor: Executor = AutoExecutor(),
cache_strategy: CacheStrategy | None = None,
max_batch_size: int | None = None,
)
Source from the content-addressed store, hash-verified
| 297 | |
| 298 | @overload |
| 299 | def udf( |
| 300 | *, |
| 301 | return_type: Any = None, |
| 302 | deterministic: bool = False, |
| 303 | propagate_none: bool = False, |
| 304 | executor: Executor = AutoExecutor(), |
| 305 | cache_strategy: CacheStrategy | None = None, |
| 306 | max_batch_size: int | None = None, |
| 307 | ) -> Callable[[Callable], UDF]: ... |
| 308 | |
| 309 | |
| 310 | @overload |