diff --git a/include/phasar/DB/Hexastore.h b/include/phasar/DB/Hexastore.h index d6960c903c..64ade62375 100644 --- a/include/phasar/DB/Hexastore.h +++ b/include/phasar/DB/Hexastore.h @@ -73,7 +73,8 @@ struct HSResult { * * @brief Efficient data structure for holding graphs in databases. */ -class Hexastore { +class [[deprecated("This ancient API is not maintained for long and should not " + "be used anymore!")]] Hexastore { private: sqlite3 *HSInternalDB{}; static int callback(void * /*NotUsed*/, int Argc, char **Argv, diff --git a/unittests/DB/CMakeLists.txt b/unittests/DB/CMakeLists.txt index 87e1de139e..6f6c3606b6 100644 --- a/unittests/DB/CMakeLists.txt +++ b/unittests/DB/CMakeLists.txt @@ -1,9 +1,9 @@ -if(SQLite3_FOUND) - set(DBSources - HexastoreTest.cpp - ) +# if(SQLite3_FOUND) +# set(DBSources +# HexastoreTest.cpp +# ) - foreach(TEST_SRC ${DBSources}) - add_phasar_unittest(${TEST_SRC}) - endforeach(TEST_SRC) -endif() +# foreach(TEST_SRC ${DBSources}) +# add_phasar_unittest(${TEST_SRC}) +# endforeach(TEST_SRC) +# endif()