[teiid-issues] [JBoss JIRA] (TEIID-2745) Evaluatable subquery in ON clause produces invalid query

Steven Hawkins (JIRA) jira-events at lists.jboss.org
Tue Nov 19 12:24:05 EST 2013


Steven Hawkins created TEIID-2745:
-------------------------------------

             Summary: Evaluatable subquery in ON clause produces invalid query
                 Key: TEIID-2745
                 URL: https://issues.jboss.org/browse/TEIID-2745
             Project: Teiid
          Issue Type: Bug
          Components: Query Engine
    Affects Versions: 7.7
            Reporter: Steven Hawkins
            Assignee: Steven Hawkins
             Fix For: 8.6


Using an evaluatable subquery, such as a scalar subquery in an outer join on clause will result in all criteria being removed and an invalid source query being issued.

For example:

with a (x, y, z) as (select e1, e2, e3 from pm1.g1 limit 1) SELECT pm2.g1.e1 from pm2.g1 left outer join pm2.g2 on (pm2.g1.e2 = pm2.g2.e2 and pm2.g1.e1 = (select a.x from a))

And a source that doesn't support with (or the with clause cannot be pushed as part of the main query), then the evaluation of the scalar subquery will block and cause the issue.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the teiid-issues mailing list