-
Notifications
You must be signed in to change notification settings - Fork 596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
depr(snowflake): deprecate from_snowpark
method
#9680
depr(snowflake): deprecate from_snowpark
method
#9680
Conversation
@IndexSeek Do you foresee any issue with removing the |
I don't see an issue with removing this. I am happy to see We may also want to adjust the references to ibis/docs/posts/run-on-snowflake/index.qmd Lines 41 to 42 in fdaeb5c
Thank you for keeping me in the loop on this one! |
Makes sense; done! |
Thank you for updating that post! I think there is only one more place where
On another note, I used the |
@@ -274,7 +274,7 @@ def _setup_session(self, *, session_parameters, create_object_udfs: bool): | |||
f"Unable to create Ibis UDFs, some functionality will not work: {e}" | |||
) | |||
|
|||
@util.experimental | |||
@util.deprecated(as_of="10.0", instead="use from_connection instead") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
experimental, straight to deprecated 😂
775af84
to
f5769cb
Compare
Merging, thanks @deepyaman and @IndexSeek! |
from_snowpark
methodfrom_snowpark
method
Since Ibis 9.2, it should be possible to use
from_connection
(introduced in #9603) as a more standardized alternative tofrom_snowpark
.from_connection
also supports aSnowflakeConnection
instance.