protected function QueryAggregate::compileAggregate

Builds the aggregation conditions part of the query.

Return value

\Drupal\field_sql_storage\Entity\QueryAggregate Returns the called object.

File

drupal/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Entity/QueryAggregate.php, line 95
Contains \Drupal\field_sql_storage\Entity\QueryAggregate.

Class

QueryAggregate
The SQL storage entity query aggregate class.

Namespace

Drupal\field_sql_storage\Entity

Code

protected function compileAggregate() {
  $this->conditionAggregate
    ->compile($this->sqlQuery);
  return $this;
}