Andy Seaborne created JENA-1226:
-----------------------------------

             Summary: Transform of nested OpFilter can lead to duplication of 
expressions.
                 Key: JENA-1226
                 URL: https://issues.apache.org/jira/browse/JENA-1226
             Project: Apache Jena
          Issue Type: Bug
            Reporter: Andy Seaborne



{noformat}
(filter (?A)
  (filter (?B)
    (table unit)))
{noformat}
gives (e.g. {{TransformCopy}})
{noformat}
(filter (exprlist ?B ?A)
  (filter (exprlist ?B ?A)
    (table unit)))
{noformat}
when it should be left alone 
{noformat}
(filter (?A)
  (filter (?B)
    (table unit)))
{noformat}
or become
{noformat}
(filter (exprlist ?B ?A)
  (table unit))
{noformat}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to