monitoring: Fix default select columns of the instance query

This commit is contained in:
Eric Lippmann 2015-08-27 11:54:20 +02:00
parent 66570c95e0
commit f35aec1c5c
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class InstanceQuery extends IdoQuery
*/
protected function joinBaseTables()
{
$this->select()->from(array('i' => $this->prefix . 'instances'));
$this->select()->from(array('i' => $this->prefix . 'instances'), array());
$this->joinedVirtualTables['instances'] = true;
}
}