afs commented on issue #3267: URL: https://github.com/apache/jena/issues/3267#issuecomment-2992121751
The initialBinding/substitute issue here seems to be more about whether the output contains the same blank node as an RDF term. If it goes through a result set syntax, then it won't be. Initial binding in local execution is a limitation affecting all query execution and hinders development of the query execution. A Jena problem is that `UpdateExec.newBuilder()` returns a `UpdateExecDatasetBuilder`, not `UpdateExecBuilder` (same for `QueryExec`) but IIRC that was for migration. Saying what the user wants directly - `UpdateExec.dataset(dsg)`,`QueryExec.dataset(dsg)` - is better. -- 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]
