Skip to content

Commit

Permalink
hotfix 1.3.1 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigerl committed Apr 12, 2024
1 parent 3733291 commit 2c328fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.18)
project(tentris
VERSION 1.3.0
VERSION 1.3.1
DESCRIPTION "tensor-based triplestore")

include(cmake/boilerplate_init.cmake)
Expand Down
2 changes: 1 addition & 1 deletion libs/sparql2tensor/src/dice/sparql2tensor/SPARQLQuery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace dice::sparql2tensor {
SPARQLQuery p_sparql{};
if (q_ctx->prologue()) {
parser::visitors::PrologueVisitor p_visitor{};
p_sparql.prefixes_ = std::any_cast<robin_hood::unordered_map<std::string, std::string>>(p_visitor.visitPrologue(q_ctx->prologue()));
p_sparql.prefixes_ = std::any_cast<rdf4cpp::rdf::parser::IStreamQuadIterator::prefix_storage_type>(p_visitor.visitPrologue(q_ctx->prologue()));
}

parser::visitors::SelectAskQueryVisitor visitor{&p_sparql};
Expand Down
2 changes: 1 addition & 1 deletion libs/sparql2tensor/src/dice/sparql2tensor/SPARQLQuery.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace dice::sparql2tensor {

std::vector<rdf4cpp::rdf::query::TriplePattern> triple_patterns_;

robin_hood::unordered_map<std::string, std::string> prefixes_;
rdf4cpp::rdf::parser::IStreamQuadIterator::prefix_storage_type prefixes_;

bool distinct_ = false;

Expand Down

0 comments on commit 2c328fb

Please sign in to comment.