[ 
https://issues.apache.org/jira/browse/JENA-1355?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16036207#comment-16036207
 ] 

ASF GitHub Bot commented on JENA-1355:
--------------------------------------

Github user asfgit closed the pull request at:

    https://github.com/apache/jena/pull/258


> Wrong determination of variables with property functions.
> ---------------------------------------------------------
>
>                 Key: JENA-1355
>                 URL: https://issues.apache.org/jira/browse/JENA-1355
>             Project: Apache Jena
>          Issue Type: Bug
>    Affects Versions: Jena 3.3.0
>            Reporter: Andy Seaborne
>            Assignee: Andy Seaborne
>
> Bug in {{VarFinder}}:
> {noformat}
> public static void main(String... args) {
>     String z = String.join("\n"
>                            ,"    (propfunc <http://example/pf>"
>                            ,"      ?x (?y 1)"
>                            ,"      (table unit))"
>                            );
>     vfind(z);                         
> }
> public static void vfind(String z) {
>     Op op = SSE.parseOp(z);
>     System.out.println(op);
>     VarFinder vf = VarFinder.process(op);
>     System.out.println(vf);
> }
> {noformat}
> prints
> {noformat}
> (propfunc <http://example/pf>
>   ?x (?y 1)
>   (table unit))
> Fixed:[?y], Filter:[], Filter2:[], Opt:[], Assign:[]
> {noformat}
> should be
> {noformat}
> Fixed:[?x, ?y], Filter:[], Filter2:[], Opt:[], Assign:[]
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to