Rafael S. Cohen
Results
2
comments of
Rafael S. Cohen
Hi, supporting Flatten blocks me from working with a local session. Any update about it?
Sharing a workaround to this problem: ```python def my_flatten(df, *args, **kwargs): return df.flatten(*args, **kwargs) def get_mock_flatten(session): def mock_flatten(df, col, ...): # Your mock goes here. # You can use `df.to_local_iterator`...