Matt Morris
Matt Morris
I am running into the same issue.
Hi @zsxwing , I know this thread is going back some time, but I'm curious what the rationale behind not allowing non-deterministic functions is? We are currently using `now()` to...
Thank you for this thread! I was running into the same problem. In my case I was able to get it working using `-p` flag the others have mentioned, along...
This feature would actually be really useful for me, especially in code blocks that make use of [snippets](https://facelessuser.github.io/pymdown-extensions/extensions/snippets/). Would you be open to a PR?
Hey @cosmicBboy I am sorry about this one. It has been a long time and I have a new github account (yes the name is nearly exactly the same :)...
> @the-matt-morris i recently forked and continued this work and have tested in production. Just didn't find the time to contribute it back. I'd be happy to open a PR...
I'm running into the same situation. ```python from databricks.sdk import WorkspaceClient w = WorkspaceClient() function_info = w.functions.get("catalog.schema.function_name") ``` ``` Traceback (most recent call last): File "", line 1, in File...
It is also worth mentioning that I'm able to see this function using `w.functions.list()`...here is what the `FunctionInfo` looks like for it (with certain unimportant attributes masked): ```python FunctionInfo(catalog_name='my_catalog', comment='Check...
Sorry for another comment, but just noticing this...should `properties` be a `dict[str, str]` rather than a string? See annotation: https://github.com/databricks/databricks-sdk-py/blob/bb3095b510e0bbe6d74a4fe47fc1ee1803b00612/databricks/sdk/service/catalog.py#L1273 In the `FunctionInfo` that was returned above, I'm getting a...
Hi, thanks for the response! I am seemingly using a very similar setup. This is running python 3.13 on Linux. Here are the python dependencies: ```bash pip install dlt[databricks,parquet] ```...