In #300 we added mappings for MINUS_PRIMARY_ALL and INTERSECTION_MULTISET_ALL to the equivalent Calcite relations (Minus(all = true), Intersect(all=true)).
We did not remove the existing mappings that were used for this, MINUS_MULTISET and INTERSECTION_PRIMARY, which are technically incorrect mappings as the behaviour in the spec is not the same as what they were being mapped to in Calcite.
These mappings were kept in place temporarily to allow for users to migrate to the correct SetOps for these operations, but will be removed in a future version.
In #300 we added mappings for
MINUS_PRIMARY_ALLandINTERSECTION_MULTISET_ALLto the equivalent Calcite relations (Minus(all = true),Intersect(all=true)).We did not remove the existing mappings that were used for this,
MINUS_MULTISETandINTERSECTION_PRIMARY, which are technically incorrect mappings as the behaviour in the spec is not the same as what they were being mapped to in Calcite.These mappings were kept in place temporarily to allow for users to migrate to the correct SetOps for these operations, but will be removed in a future version.