Aklakan commented on issue #3739:
URL: https://github.com/apache/jena/issues/3739#issuecomment-3872805585
AFAIK the variables of the VALUES block need to be in-scope with the result
variables.
```sparql
SELECT ?foo (COUNT(*) AS ?count) {
}
GROUP BY ?foo
VALUES ?foo { "foo" }
```
gives
```
-----------------
| foo | count |
=================
| "foo" | 1 |
-----------------
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]