Skip to content
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

Located Triples #1351

Draft
wants to merge 152 commits into
base: master
Choose a base branch
from
Draft

Located Triples #1351

wants to merge 152 commits into from

Commits on Jun 9, 2023

  1. Code for locating triples in an existing index

    This is the first part of a series of PRs split of from the large
    proof-of-concept PR ad-freiburg#916,
    which realizes SPARQL 1.1 Update
    Hannah Bast committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    84a4bdf View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2023

  1. Add test for the locatedTriple method + address some of the comment…

    …s from Johannes' review
    Hannah Bast committed Jun 10, 2023
    Configuration menu
    Copy the full SHA
    d8781a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    258231d View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2024

  1. Merge current master and get everything to run again

    This PR is from June 2023. Since then, quite a bit of code that is
    relevant for this PR has been refactored. In particular: the
    `Permutation` class, the `CompressedRelationWriter` and the index
    building functions in `IndexImpl`. Mostly, this refactoring has made the
    code in this PR simpler. There is still some akwardness in
    `LocatedTriplesTest.cpp` because we want to build an index from `Id`
    triples there (and not from Turtle input).
    
    Now evertyhing compiles and runs through again. Various tests in
    `LocatedTriplesTest` fail, that's what I will look at next.
    Hannah Bast committed Feb 10, 2024
    Configuration menu
    Copy the full SHA
    34647fa View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. A few minor improvements

    Hannah Bast committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    59aae8e View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Merge branch 'master' into located-triples

    But not functional yet
    Qup42 committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    0754933 View commit details
    Browse the repository at this point in the history
  2. Delete some comment reformatting

    This makes the actual changes hard to spot
    Qup42 committed Apr 29, 2024
    Configuration menu
    Copy the full SHA
    a37f5c3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b394d89 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Update comments

    Qup42 committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    524cc22 View commit details
    Browse the repository at this point in the history
  2. Use proper objects in tests

    Qup42 committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    295961d View commit details
    Browse the repository at this point in the history
  3. Simply triple location

    Both cases would have done a full scan anyway, so we can do that directly without retrieving the relation metadata.
    Qup42 committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    70dc617 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    702fdc7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8d11581 View commit details
    Browse the repository at this point in the history
  3. Some cleanup

    Qup42 committed May 13, 2024
    Configuration menu
    Copy the full SHA
    dd32606 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fd28fb1 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Merge branch 'refs/heads/master' into located-triples-3

    # Conflicts:
    #	test/ValueIdTest.cpp
    Qup42 committed May 17, 2024
    Configuration menu
    Copy the full SHA
    f975039 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2024

  1. Configuration menu
    Copy the full SHA
    f07251e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    61b01ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2527cfe View commit details
    Browse the repository at this point in the history

Commits on May 19, 2024

  1. Start locating triples

    Qup42 committed May 19, 2024
    Configuration menu
    Copy the full SHA
    f738b40 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2024

  1. Add benchmarking code

    Qup42 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    cfc581e View commit details
    Browse the repository at this point in the history
  2. format

    Qup42 committed May 20, 2024
    Configuration menu
    Copy the full SHA
    b0bcae7 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Configuration menu
    Copy the full SHA
    3f177ea View commit details
    Browse the repository at this point in the history
  2. Adapt for merged changes

    Qup42 committed May 27, 2024
    Configuration menu
    Copy the full SHA
    33a5f3e View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    25656db View commit details
    Browse the repository at this point in the history
  2. Update SparqlAntlrParser Tests

    Qup42 committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    aa6e8a5 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Configuration menu
    Copy the full SHA
    5275304 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b09872c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    80aa974 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    49b9226 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. First update POC

    Qup42 committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    ea328bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68972ef View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Work

    Qup42 committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    3aec517 View commit details
    Browse the repository at this point in the history
  2. Some more cleanup and fixes

    Qup42 committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    21af4c2 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. More simplification and cleanup

    Qup42 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    aa42c68 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    252a627 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    69a9173 View commit details
    Browse the repository at this point in the history
  4. Use IdTriple in LocatedTriple

    Qup42 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    cc9ee22 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    267eb87 View commit details
    Browse the repository at this point in the history
  6. Improve

    Qup42 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    1cdca25 View commit details
    Browse the repository at this point in the history
  7. Improve tests

    Qup42 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    4d1b7b0 View commit details
    Browse the repository at this point in the history
  8. Merge all da triples

    Qup42 committed Jun 12, 2024
    Configuration menu
    Copy the full SHA
    55eab54 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Configuration menu
    Copy the full SHA
    75fce36 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28e62ea View commit details
    Browse the repository at this point in the history
  3. Iron out another edge-case

    Qup42 committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    60e7ed2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a3007c6 View commit details
    Browse the repository at this point in the history
  5. Use correct iterator

    Qup42 committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    e71d315 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c98c828 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2024

  1. Update comments

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    cd9a969 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ddcf2b3 View commit details
    Browse the repository at this point in the history
  3. Delete dead code

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    17a4ced View commit details
    Browse the repository at this point in the history
  4. Fix spelling errors

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    86e46a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1cd0c47 View commit details
    Browse the repository at this point in the history
  6. Refactor blockBeginOffset

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    d04e6b6 View commit details
    Browse the repository at this point in the history
  7. Remove debug prints

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    a6f858d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    09125fe View commit details
    Browse the repository at this point in the history
  9. Mute warning in test

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    d6675ee View commit details
    Browse the repository at this point in the history
  10. Fix

    Follow up from d04e6b6
    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    ef7373b View commit details
    Browse the repository at this point in the history
  11. Delete dead code from tests

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    93f3284 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9a903db View commit details
    Browse the repository at this point in the history
  13. Improve server code

    Qup42 committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    8a5176f View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. Fix some code style issues

    Qup42 committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    ebb15b0 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. Configuration menu
    Copy the full SHA
    af18d38 View commit details
    Browse the repository at this point in the history
  2. Little cleanup

    Qup42 committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    9048ed0 View commit details
    Browse the repository at this point in the history
  3. Revert usage of std::format

    std::format has poor support by compilers. Out of our targets only gcc13 supports it fully.
    Qup42 committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    57df48d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6292f07 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a4d4281 View commit details
    Browse the repository at this point in the history
  6. sonarcloud

    Qup42 committed Jun 16, 2024
    Configuration menu
    Copy the full SHA
    bea748d View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. Mute aggressive warnings

    Qup42 committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    900d9a2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9a7abc6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b2841c9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    84518fd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e5f1f84 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Configuration menu
    Copy the full SHA
    9641e15 View commit details
    Browse the repository at this point in the history
  2. Work on DeltaTriples

    Qup42 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    2060709 View commit details
    Browse the repository at this point in the history
  3. Use the cancellationHandle more

    Qup42 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    f4abf7f View commit details
    Browse the repository at this point in the history
  4. Update copyright headers

    Qup42 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    ff36919 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b39d3da View commit details
    Browse the repository at this point in the history
  6. Work on LocatedTriples

    Qup42 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    fbcb040 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Fix bug in LocatedTriples

    Qup42 committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    6dd7e19 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    75b5cd6 View commit details
    Browse the repository at this point in the history
  3. Change pretty printing functions to hidden friend

    as per Sonarcloud
    Qup42 committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    e9a4f7a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    acd0e07 View commit details
    Browse the repository at this point in the history
  5. Negative tests

    Qup42 committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    57364ec View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. CodeReview

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    1d4f50b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcdeb8c View commit details
    Browse the repository at this point in the history
  3. Adapt to CodeReview changes

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    72a930b View commit details
    Browse the repository at this point in the history
  4. Make IdTriple its own type

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    5a5304d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    940f52a View commit details
    Browse the repository at this point in the history
  6. DeltaTriples

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    8e86de6 View commit details
    Browse the repository at this point in the history
  7. More concrete print function

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    10aacef View commit details
    Browse the repository at this point in the history
  8. Simply tripleLocation test

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    25166af View commit details
    Browse the repository at this point in the history
  9. Commit

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    318b6af View commit details
    Browse the repository at this point in the history
  10. Fix segfault

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    7b0ed64 View commit details
    Browse the repository at this point in the history
  11. Fix

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    0b5d903 View commit details
    Browse the repository at this point in the history
  12. Code Review

    Qup42 committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    f7c3ca4 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Code Review

    Qup42 committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    19a0266 View commit details
    Browse the repository at this point in the history
  2. Code Review

    Qup42 committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    9eb603b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6816deb View commit details
    Browse the repository at this point in the history
  4. Use implicit copy constructor

    Qup42 committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    237e7f3 View commit details
    Browse the repository at this point in the history
  5. Mark print function's purpose

    Qup42 committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    fc7b8c4 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Improvements

    Qup42 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    e7a1543 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Improvements

    Qup42 committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    f466785 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    73da7ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8ef8a0d View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Consider updated block borders

    Qup42 committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    abb9941 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2024

  1. Fix updated block borders

    Qup42 committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    3bcd238 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3f7073a View commit details
    Browse the repository at this point in the history
  3. Remove obsolete code

    Qup42 committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    dfae87b View commit details
    Browse the repository at this point in the history
  4. Add some debug prints

    Qup42 committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    a7a74df View commit details
    Browse the repository at this point in the history
  5. Eliminate duplicate triples

    Qup42 committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    8202044 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Configuration menu
    Copy the full SHA
    29b572b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0192896 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Some cleanup

    Qup42 committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    4c0743a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    623c59a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    528b8f5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    106c0ff View commit details
    Browse the repository at this point in the history
  5. Fix stuff

    Qup42 committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    5d78c5e View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Configuration menu
    Copy the full SHA
    cd470ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    84ba86e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9371107 View commit details
    Browse the repository at this point in the history
  4. Apply sonarlint suggestion

    Qup42 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    1453b12 View commit details
    Browse the repository at this point in the history
  5. Add TODO

    Qup42 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    70cc3b7 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. Configuration menu
    Copy the full SHA
    ec7ce2a View commit details
    Browse the repository at this point in the history
  2. Update some comments

    Qup42 committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    7301074 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6c7ec05 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ac93709 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. Configuration menu
    Copy the full SHA
    0628c1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b95de3c View commit details
    Browse the repository at this point in the history
  3. Merge branch 'refs/heads/master' into located-triples-3

    # Conflicts:
    #	test/util/IdTestHelpers.h
    Qup42 committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    6a9418b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    08020f3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f649947 View commit details
    Browse the repository at this point in the history
  6. Fix sonarcloud errors

    Qup42 committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    48ea315 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3046499 View commit details
    Browse the repository at this point in the history
  8. Tune down debug prints

    Qup42 committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    a726cce View commit details
    Browse the repository at this point in the history
  9. Add DeltaTriplesTest

    Qup42 committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    a7415e1 View commit details
    Browse the repository at this point in the history
  10. Fix use after free in tests

    Qup42 committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    783f15d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    2b99783 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2024

  1. Code Review

    Qup42 committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    4c92d5e View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2024

  1. Code Review

    Qup42 committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    7166f1f View commit details
    Browse the repository at this point in the history
  2. Code Review

    Qup42 committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    80996cc View commit details
    Browse the repository at this point in the history
  3. Add cmd to reset updates

    Qup42 committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    fc91182 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Code Review

    Qup42 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    624819e View commit details
    Browse the repository at this point in the history
  2. Code Review

    Qup42 committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    7d20ea0 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Respect response media type

    Qup42 committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    83a1e22 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Fix for stdc++16

    Qup42 committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    c4e9b0f View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Apply final suggestion

    Qup42 committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    5729454 View commit details
    Browse the repository at this point in the history
  2. Add another test

    Qup42 committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    373d2c3 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Apply suggestion

    Qup42 committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d2edd00 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

  1. Merge branch 'refs/heads/master' into located-triples-3

    # Conflicts:
    #	src/global/IdTriple.h
    #	src/index/IndexFormatVersion.h
    #	src/index/LocatedTriples.cpp
    #	src/index/LocatedTriples.h
    #	test/CMakeLists.txt
    #	test/IdTripleTest.cpp
    #	test/LocatedTriplesTest.cpp
    Qup42 committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    3e8fe14 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Cleanup in DeltaTriples

    Qup42 committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    fa8df6d View commit details
    Browse the repository at this point in the history
  2. Merge branch 'refs/heads/master' into located-triples-3

    # Conflicts:
    #	src/engine/sparqlExpressions/SparqlExpressionValueGetters.cpp
    Qup42 committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    643b7ce View commit details
    Browse the repository at this point in the history