-
I want to use the format_string function for the Databricks backend. However, when I "create" a UDF: @ibis.udf.scalar.builtin
def format_string(format, *args) -> str:
... and use it like so: (
device_process_events
.rename("snake_case")
.mutate(
message=format_string(
"The process %s %s",
_.initiating_process_file_name,
_.process_id
)
)
) it fails with the message:
If I explicitly set the number of args that I use, e.g., 2 in the above example, it works. |
Beta Was this translation helpful? Give feedback.
Answered by
cpcloud
May 3, 2025
Replies: 1 comment
-
I don't think we support this yet. I can take a look at implementing it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kyrre
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think we support this yet. I can take a look at implementing it.