Github user afs commented on a diff in the pull request:
https://github.com/apache/jena/pull/105#discussion_r47078789
--- Diff:
jena-arq/src/main/java/org/apache/jena/sparql/core/mem/DatasetGraphInMemory.java
---
@@ -161,17 +161,17 @@ public void abort() {
@Override
public void close() {
if (isInTransaction()) abort();
-
}
@Override
public void end() {
if (isInTransaction()) {
+ log.warn("Ending transaction without commit!");
--- End diff --
begin(READ)-end() is a normal pattern. The code needs to know if it is
considering a READ or WRITE transaction.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---