Sushil Mohanty created LENS-1334:
------------------------------------
Summary: Full outer join queries join conditions not rewritten
correctly when more than two table involved
Key: LENS-1334
URL: https://issues.apache.org/jira/browse/LENS-1334
Project: Apache Lens
Issue Type: Bug
Components: cube
Reporter: Sushil Mohanty
Fix For: 2.7
Currently full outer join queries are written like below
{CODE}
...from A full outer join B full outer join C on A.col = B.col and A.col = C.col
{CODE}
instead it should be rewritten as
{CODE}
...from A full outer join B on a.col = b.col full outer join C on b.col = c.col
{CODE}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)