Julian Hyde created CALCITE-1633:
------------------------------------
Summary: In plans, output Correlate.joinType attribute in
lower-case, same as Join.joinType
Key: CALCITE-1633
URL: https://issues.apache.org/jira/browse/CALCITE-1633
Project: Calcite
Issue Type: Bug
Reporter: Julian Hyde
Assignee: Julian Hyde
Change how we output the {{joinType}} attribute of {{Correlate}} (which is of
type {{enum SemiJoinType}}. Plans will change from
{noformat}
EnumerableCorrelate(correlation=[$cor0], joinType=[LEFT], requiredColumns=[{1}])
{noformat}
to
{noformat}
EnumerableCorrelate(correlation=[$cor0], joinType=[left], requiredColumns=[{1}])
{noformat}
which matches current plans involving the {{joinType}} attribute {{Join}}
(which is of type {{enum JoinRelType}}), e.g.
{noformat}
LogicalJoin(condition=[true], joinType=[left])
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)