You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the plan equality method doesn't work as intended when comparing plans of unequal size.
We use the zip method to iteratively check equality of individual plan components. However, when we iterate across plans of unequal size, zip will only yield the first n elements, where n is the number of elements in the "sparser" plan.
The text was updated successfully, but these errors were encountered:
the plan equality method doesn't work as intended when comparing plans of unequal size.
We use the
zip
method to iteratively check equality of individual plan components. However, when we iterate across plans of unequal size,zip
will only yield the firstn
elements, wheren
is the number of elements in the "sparser" plan.The text was updated successfully, but these errors were encountered: