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

Bug #2700: SQL query for VirtualMachinePool accounting now has ORDER BY

instead of GROUP BY (which was a typo)
This commit is contained in:
Jaime Melis 2014-02-12 15:48:12 +01:00
parent d30c61355a
commit 7956af8399

View File

@ -346,7 +346,7 @@ int VirtualMachinePool::dump_acct(ostringstream& oss,
}
}
cmd << " GROUP BY vid,seq";
cmd << " ORDER BY vid,seq";
return PoolSQL::dump(oss, "HISTORY_RECORDS", cmd);
};