GitHub user xristy opened a pull request:
https://github.com/apache/jena/pull/325
fix JENA-1439 graph queries fail 'lang:xx'
Fixes JENA-1439 graph queries fail to preserve text:query 'lang:xx' arg.
TextQueryPF.extractArg(...) removed the arg unnecessarily from the input list,
side-effecting the list which was saved in an OpPropFunc for repeated use on
graph iterations and thus the argument was only present on the first graph in
the iteration
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/BuddhistDigitalResourceCenter/jena
JENA-1439-graphs
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/jena/pull/325.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #325
----
commit 3d63b3d2d62a30690b7359703fc39aa05001be31
Author: Chris Tomlinson <[email protected]>
Date: 2017-12-09T17:37:51Z
fix JENA-1439 graph queries fail 'lang:xx'
Fixes JENA-1439 graph queries fail to preserve text:query 'lang:xx' arg.
TextQueryPF.extractArg(...) removed the arg unnecessarily from the input list,
side-effecting the list which was saved in an OpPropFunc for repeated use on
graph iterations and thus the argument was only present on the first graph in
the iteration
----
---