Open CHDev93 opened 2 months ago
Is there a minimal repro on this one? Seems to happen an lot of unneeded work/ and operations.
@ritchie46 I've simplified the example in the main issue. Basically I think both lazy and eager path should fail with not implemented yet the lazy one succeeds with a 0 row dataframe
Checks
Reproducible example
Log output
Issue description
Was trying to solve my join on a triple index key using too much memory and so tried creating a single list dtype column and joining on that.
Running in eager mode, the query fails because hash join is not implemented on the list dtype. Doing it with a lazy frame succeeds but silently returns an empty dataframe.
Expected behavior
Doing the operation with a lazy frame should also hard fail like in the commented code at the bottom of the example ( indicating that the join has not been implemented)
Installed versions