You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2022/07/26 09:13:21 UTC

[jena] branch main updated (4501b7fc20 -> 0a5ac47ce7)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git


    from 4501b7fc20 Merge pull request #1410 from apache/dependabot/maven/ver.jts-1.19.0
     new a961d8ee27 GH-1252: Initial clean-up
     new 3a580054a1 GH-1252: Control transaction entry in the switchable container.
     new 155268f0f7 GH-1457: Take locks once-only in the right order during promote
     new 0a5ac47ce7 Merge pull request #1456 from afs/tdb2-compact

The 10103 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../jena/sparql/core/mem/DatasetGraphInMemory.java |  19 +-
 .../jena/sparql/core/mem/TS_DatasetTxnMem.java     |   1 -
 .../transaction/AbstractTestTransPromote.java      | 110 +++----
 .../AbstractTestTransactionLifecycle.java          | 102 +++---
 .../java/org/apache/jena/atlas/lib/ThreadLib.java  |   1 +
 .../dboe/storage/system/DatasetGraphTxnCtl.java    | 351 +++++++++++++++++++++
 .../jena/dboe/transaction/txn/Transaction.java     |   6 +-
 .../transaction/txn/TransactionCoordinator.java    | 112 ++++---
 .../dboe/transaction/txn/TransactionalBase.java    |   4 +-
 .../txn/TransactionalSystemControl.java            | 128 ++++++++
 .../jena/tdb2/store/DatasetGraphSwitchable.java    |  41 +--
 .../java/org/apache/jena/tdb2/sys/DatabaseOps.java |  95 +++---
 12 files changed, 746 insertions(+), 224 deletions(-)
 create mode 100644 jena-db/jena-dboe-storage/src/main/java/org/apache/jena/dboe/storage/system/DatasetGraphTxnCtl.java
 create mode 100644 jena-db/jena-dboe-transaction/src/main/java/org/apache/jena/dboe/transaction/txn/TransactionalSystemControl.java