dask_awkward.PartitionCompatibility#

class dask_awkward.PartitionCompatibility(value)[source]#

Sum type for describing partition compatibility.

Use the partition_compatibility() function as an entry point to instances of this class.

NO#

The compatibility is absolutely false; either an unequal number of partitions or known divisions do not match

MAYBE#

The compatibility is possible; the total number of partitions are equal but some divisions are unknown so therefore it’s possible that partitions are not compatible, but this cannot be determined without some compute.

YES#

The compatibility is absolutely true; equal number of partitions and known divisions match.

__init__()#

Attributes

NO

MAYBE

YES