Open venkat-oss opened 3 days ago
@gforsyth and @cpcloud could you please provide some feedback/pointers on how MapMerge could be implemented?
I'm not very sure how MapMerge could be implemented unless supported by datafusion.
Very nice! Thank you for working on this, @venkat-oss.
Could you remove the "notyet" markers in the tests so that we can ensure these operations run properly with DataFusion? Here is an example of a marker and where they can be found in the case of the tests for map:
After this, can you run your code through the linter? If you have just
, you can do: just fmt
. This command will run the following (in case you don't have just
available):
ruff format .
ruff check --fix .
ops.Map - ✅ (Already supported by ibis) ops.MapLength - ✅ ops.MapGet - ✅ ops.MapContains - ✅ ops.MapKeys - ✅ ops.MapValues - ✅ ops.MapMerge - 🆘 Need help