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
GProm's algebra uses bag versions of set operations. An input set version, is translated into the bag version plus duplicate elimination. When translating back in the serializer we just use the bag version. We should whether a set operation is used in conjunction with duplicate elimination and if that is the case use the set version instead.
SELECT*FROM r UNIONSELECT*FROM s;
is translated into
DuplicateRemoval Union Projection [a b ] TableAccess [r] Projection [c d ] TableAccess [s]
GProm's algebra uses bag versions of set operations. An input set version, is translated into the bag version plus duplicate elimination. When translating back in the serializer we just use the bag version. We should whether a set operation is used in conjunction with duplicate elimination and if that is the case use the set version instead.
is translated into
and then serialized into
when instead it would be better to generate
The text was updated successfully, but these errors were encountered: