You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by "Andy Seaborne (JIRA)" <ji...@apache.org> on 2013/03/25 22:07:15 UTC

[jira] [Created] (JENA-423) Iterator not closed warning when application pulsl only one row and aggregating over the empty group

Andy Seaborne created JENA-423:
----------------------------------

             Summary: Iterator not closed warning when application pulsl only one row and aggregating over the empty group
                 Key: JENA-423
                 URL: https://issues.apache.org/jira/browse/JENA-423
             Project: Apache Jena
          Issue Type: Bug
          Components: ARQ
    Affects Versions: Jena 2.10.0
            Reporter: Andy Seaborne
            Assignee: Andy Seaborne
            Priority: Minor


>From : http://mail-archives.apache.org/mod_mbox/jena-users/201303.mbox/%3CCAD_aa-9YT%2BmZVD60oK%3DXWOiYLe9iXCfXmhuTQRRawOHS1B-4LA%40mail.gmail.com%3E

Example:

SELECT (count (*) as ?n) { FILTER(false) }

App code:

ResultSet results = exec.execSelect();
if (results.hasNext()) {
        QuerySolution solution = results.nextSolution();
        ...
}
exec.close()


--
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