-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apache Jena function apf:strSplit
not working within the service clause
#330
Comments
apf:strSplit
not working within SPARQL Anythig service clauseapf:strSplit
not working within the service clause
Does the FX executor register APF functions? |
My understanding of the thing is the following.
This translates in Algebra as
The Jena optimiser transforms the OpBGP into
via the As a result, to make the Apache Jena functions work inside the service clause we just need to transform the OpBGP at some point. This would turn the OpBGP into a OpPropFunc and will be evaluated as exepected. |
By the way, if the operations within the service are not optimised maybe the execution is not optimal.. maybe we could consider invoking the optimiser in FXOpExecutor.execute(OpService). |
Excellent point; I am opening an issue for that. |
This issue emerged while tackling #329 -- it appears that moving the call outside the SERVICE clause fixed the problem.
See #329 (comment)
The text was updated successfully, but these errors were encountered: