Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Change how we output the joinType attribute of Correlate (which is of type enum SemiJoinType. Plans will change from
EnumerableCorrelate(correlation=[$cor0], joinType=[LEFT], requiredColumns=[{1}])
to
EnumerableCorrelate(correlation=[$cor0], joinType=[left], requiredColumns=[{1}])
which matches current plans involving the joinType attribute Join (which is of type enum JoinRelType), e.g.
LogicalJoin(condition=[true], joinType=[left])