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
In the current version of Spark Connect, the Spark Connect implementations of the Column and DataFrame classes aren't inherited from the corresponding classes, so the following checks will fail:
from pyspark.sql import DataFrame, Column
if isinstance(cl, Column):
...
if isinstance(df, DataFrame):
....
Making it harder to port code to UC Shared clusters and serverless notebooks/workflows...
The text was updated successfully, but these errors were encountered:
In the current version of Spark Connect, the Spark Connect implementations of the
Column
andDataFrame
classes aren't inherited from the corresponding classes, so the following checks will fail:Making it harder to port code to UC Shared clusters and serverless notebooks/workflows...
The text was updated successfully, but these errors were encountered: