Generic preparation and validation for a SELECT query.
TRUE if the validation was successful, FALSE if not.
Overrides SelectQueryInterface::preExecute
public function preExecute(SelectQueryInterface $query = NULL) {
// If no query object is passed in, use $this.
if (!isset($query)) {
$query = $this;
}
return $this->query
->preExecute($query);
}