1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

M #-: Fix non-MySQL build

This commit is contained in:
Ruben S. Montero 2020-06-04 10:59:16 +02:00
parent b4f2914f3b
commit 865a86fe7b
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -144,12 +144,13 @@ class MySqlDB : public SqlDB
public:
MySqlDB(const std::string& _server,
int _port,
int _port,
const std::string& _user,
const std::string& _password,
const std::string& _database,
const std::string& _encoding,
int _connections)
int _connections,
std::string& _compare_binary);
{
throw runtime_error("Aborting oned, MySQL support not compiled!");
};