You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2023/03/20 09:37:57 UTC

[jena] branch main updated (93b80ef0c8 -> f3a229b7f6)

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

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


    from 93b80ef0c8 Merge pull request #1805 from afs/fuseki-modules
     new ce24ce3b4a Fast TDB2 graph listing prototype (GH-1639)
     new 21bb4ac318 Optimise SELECT * WHERE { GRAPH ?g { } } for TDB2 (GH-1639)
     new cf00f62a5c Add low level tests for new distinct by key iterator (GH-1639)
     new 993fc6c757 Distinct key prefix iterator creation cleanup (GH-1639)
     new f3a229b7f6 Merge pull request #1655 from rvesse/tdb2-fast-graph-list

The 10599 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:
 .../bplustree/BPTreeDistinctKeyPrefixIterator.java | 221 +++++++++++++
 .../jena/dboe/trans/bplustree/BPlusTree.java       |   8 +
 .../trans/bplustree/TestBPTreeDistinctKeys.java    | 344 +++++++++++++++++++++
 .../jena/dboe/trans/bplustree/TestBPTreeModes.java |   7 +-
 .../org/apache/jena/tdb/store/DatasetGraphTDB.java |   2 +-
 .../org/apache/jena/tdb2/solver/SolverLibTDB.java  |  72 +++--
 .../apache/jena/tdb2/store/DatasetGraphTDB.java    |  12 +
 .../jena/tdb2/store/tupletable/TupleTable.java     |  38 +++
 .../jena/tdb2/store/tupletable/TestTupleTable.java |  36 +++
 9 files changed, 715 insertions(+), 25 deletions(-)
 create mode 100644 jena-db/jena-dboe-trans-data/src/main/java/org/apache/jena/dboe/trans/bplustree/BPTreeDistinctKeyPrefixIterator.java
 create mode 100644 jena-db/jena-dboe-trans-data/src/test/java/org/apache/jena/dboe/trans/bplustree/TestBPTreeDistinctKeys.java