Open universalmind303 opened 4 months ago
Any thoughts also on partitioning? They could contain the same data (and same order) globally, but partitioning might differ.
I feel like perhaps the safest option might just be to compare the logical plans...
Is your feature request related to a problem? Please describe.
I'd like to be able to compare if dataframes are equal to one another.
Describe the solution you'd like I think there's a few things to consider here. Since dataframes can either be loaded/unloaded we'd probably have to have some logic to check a few things before checking the actual values.
I think using the
__eq__
method is fine, but a.equals
method would allow for more configuration such as null handlingDescribe alternatives you've considered manually compare dataframes.