You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because RDF4j's SPARQLRepository class only considers direct add/delete operations on the connection to be part of the transaction, whilst the update! operation is sent immediately (outside of the transaction).
This means that when the transaction is commited it is empty and hence you have no "query string" (transaction data).
Creating a transaction on a grafter/rdf4j
sparql-repo
and then callingupdate!
yeilds an error:This is because RDF4j's SPARQLRepository class only considers direct add/delete operations on the connection to be part of the transaction, whilst the
update!
operation is sent immediately (outside of the transaction).This means that when the transaction is commited it is empty and hence you have no "query string" (transaction data).
e.g. this does not error:
However the
update!
call occured before the addition of the triple (outside the transaction).These problems exist in the RDF4j implementation.
The text was updated successfully, but these errors were encountered: