IdoQuery::joinHookedVirtualTable: missing method

This commit is contained in:
Thomas Gelf 2015-11-13 17:04:56 +01:00
parent b7352105d2
commit 2589fbcf04

View File

@ -882,6 +882,19 @@ abstract class IdoQuery extends DbQuery
return $this;
}
/**
* Tell a hook to join a virtual table
*
* @param String $table
* @return $this
*/
protected function joinHookedVirtualTable($table)
{
$this->hookedVirtualTable[$table]->joinVirtualTable($table);
$this->joinedVirtualTables[$table] = true;
return $this;
}
/**
* Get the table for a specific alias
*