mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Remove sophia database and backend
This commit is contained in:
@@ -22,7 +22,6 @@
|
||||
#include "../ripple_hyperleveldb/ripple_hyperleveldb.h"
|
||||
#include "../ripple_leveldb/ripple_leveldb.h"
|
||||
#include "../ripple_mdb/ripple_mdb.h"
|
||||
#include "../ripple/sophia/ripple_sophia.h"
|
||||
#include "../ripple/rocksdb/ripple_rocksdb.h"
|
||||
|
||||
namespace ripple {
|
||||
@@ -42,8 +41,6 @@ namespace ripple {
|
||||
#include "backend/NullFactory.cpp"
|
||||
# include "backend/MdbFactory.h"
|
||||
#include "backend/MdbFactory.cpp"
|
||||
# include "backend/SophiaFactory.h"
|
||||
#include "backend/SophiaFactory.cpp"
|
||||
# include "backend/RocksDBFactory.h"
|
||||
#include "backend/RocksDBFactory.cpp"
|
||||
|
||||
|
||||
@@ -348,10 +348,6 @@ void Database::addAvailableBackends ()
|
||||
addFactory (RocksDBFactory::New ());
|
||||
#endif
|
||||
|
||||
#if RIPPLE_SOPHIA_AVAILABLE
|
||||
addFactory (SophiaFactory::getInstance ());
|
||||
#endif
|
||||
|
||||
addFactory (KeyvaDBFactory::getInstance ());
|
||||
}
|
||||
|
||||
|
||||
@@ -98,10 +98,6 @@ public:
|
||||
#if RIPPLE_ROCKSDB_AVAILABLE
|
||||
testBackend ("rocksdb", seedValue);
|
||||
#endif
|
||||
|
||||
#if RIPPLE_SOPHIA_AVAILABLE
|
||||
testBackend ("sophia", seedValue);
|
||||
#endif
|
||||
}
|
||||
|
||||
BackendTests () : TestBase ("NodeStoreBackend")
|
||||
|
||||
@@ -192,10 +192,6 @@ public:
|
||||
testNodeStore ("rocksdb", useEphemeralDatabase, true, seedValue);
|
||||
#endif
|
||||
|
||||
#if RIPPLE_SOPHIA_AVAILABLE
|
||||
testNodeStore ("sophia", useEphemeralDatabase, true, seedValue);
|
||||
#endif
|
||||
|
||||
testNodeStore ("sqlite", useEphemeralDatabase, true, seedValue);
|
||||
}
|
||||
|
||||
@@ -217,12 +213,6 @@ public:
|
||||
#if RIPPLE_MDB_AVAILABLE
|
||||
testImport ("mdb", "mdb", seedValue);
|
||||
#endif
|
||||
*/
|
||||
|
||||
/*
|
||||
#if RIPPLE_SOPHIA_AVAILABLE
|
||||
testImport ("sophia", "sophia", seedValue);
|
||||
#endif
|
||||
*/
|
||||
|
||||
testImport ("sqlite", "sqlite", seedValue);
|
||||
|
||||
@@ -128,12 +128,6 @@ public:
|
||||
#endif
|
||||
*/
|
||||
|
||||
/*
|
||||
#if RIPPLE_SOPHIA_AVAILABLE
|
||||
testBackend ("sophia", seedValue);
|
||||
#endif
|
||||
*/
|
||||
|
||||
/*
|
||||
testBackend ("sqlite", seedValue);
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user