Aklakan opened a new issue, #2580:
URL: https://github.com/apache/jena/issues/2580
### Version
5.2.0-SNAPSHOT
### What happened?
`RDFLinkModular.query(String)` is backed by the default method form RDFLink
which parses the query. Query parsing may fail when using vendor-specific
SPARQL extensions.
There is simply the override missing, which delegates to the underlying
query connection:
```java
@Override
public QueryExec query(String queryString) {
return queryConnection().query(queryString);
}
```
### Relevant output and stacktrace
_No response_
### Are you interested in making a pull request?
Yes
--
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]