1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Bug #848: Fix tests

This commit is contained in:
Carlos Martín 2011-10-10 18:56:19 +02:00
parent 771a4ac8d9
commit ee28c22f53

View File

@ -529,11 +529,11 @@ void Nebula::start()
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
void Nebula::bootstrap()
int Nebula::bootstrap()
{
ostringstream oss;
oss << "CREATE TABLE pool_control (tablename VARCHAR(32) PRIMARY KEY, "
"last_oid BIGINT UNSIGNED)";
db->exec(oss);
return db->exec(oss);
}