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
df=pl.LazyFrame(data={"col1": ["a"]})
df_empty=pl.LazyFrame(
data={"col1": []},
schema={"col1": str},
)
# test right empty - file createddf.join(df_empty, how="cross").sink_ipc("cross1.ipc", engine="streaming")
# test left empty - no filedf_empty.join(df, how="cross").sink_ipc("cross2.ipc", engine="streaming")
# test both empty - no filedf_empty.join(df_empty, how="cross").sink_ipc("cross3.ipc", engine="streaming")