Suppose we have a union of three queries:
union = query1 | query2 | query3
union.all_ = True
Why does the ALL key only apply to the union of query2 and query3?
We need the ALL key to be applied to all union operations.
union = query1 | query2
union.all_ = True
union |= query3
union.all_ = True
Is it correct?