You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Computes hex value of the given column, which could be :class:`~pyspark.sql.types.StringType`, :class:`~pyspark.sql.types.BinaryType`, :class:`~pyspark.sql.types.IntegerType` or :class:`~pyspark.sql.types.LongType`.
4882
+
"""Computes hex value of the given column, which could be :class:`~pyspark.sql.types.StringType`,
4883
+
:class:`~pyspark.sql.types.BinaryType`, :class:`~pyspark.sql.types.IntegerType` or
"""Inverse of hex. Interprets each pair of characters as a hexadecimal number and converts to the byte representation of number. column and returns it as a binary column.
4910
+
"""Inverse of hex. Interprets each pair of characters as a hexadecimal number and converts to the byte
4911
+
representation of number. column and returns it as a binary column.
Copy file name to clipboardExpand all lines: duckdb/udf.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,9 @@
2
2
3
3
4
4
defvectorized(func: Callable) ->Callable:
5
-
"""Decorate a function with annotated function parameters, so DuckDB can infer that the function should be provided with pyarrow arrays and should expect pyarrow array(s) as output."""
5
+
"""Decorate a function with annotated function parameters, so DuckDB can infer that the function should be
6
+
provided with pyarrow arrays and should expect pyarrow array(s) as output.
0 commit comments