Remove sophia database and backend

This commit is contained in:
Vinnie Falco
2013-11-27 15:09:26 -08:00
parent 97cecc18ce
commit 8a278cf9d6
59 changed files with 0 additions and 10004 deletions

View File

@@ -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"

View File

@@ -348,10 +348,6 @@ void Database::addAvailableBackends ()
addFactory (RocksDBFactory::New ());
#endif
#if RIPPLE_SOPHIA_AVAILABLE
addFactory (SophiaFactory::getInstance ());
#endif
addFactory (KeyvaDBFactory::getInstance ());
}

View File

@@ -98,10 +98,6 @@ public:
#if RIPPLE_ROCKSDB_AVAILABLE
testBackend ("rocksdb", seedValue);
#endif
#if RIPPLE_SOPHIA_AVAILABLE
testBackend ("sophia", seedValue);
#endif
}
BackendTests () : TestBase ("NodeStoreBackend")

View File

@@ -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);

View File

@@ -128,12 +128,6 @@ public:
#endif
*/
/*
#if RIPPLE_SOPHIA_AVAILABLE
testBackend ("sophia", seedValue);
#endif
*/
/*
testBackend ("sqlite", seedValue);
*/