You are here

protected function Query::finish in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Query/Sql/Query.php \Drupal\Core\Entity\Query\Sql\Query::finish()
  2. 9 core/lib/Drupal/Core/Entity/Query/Sql/Query.php \Drupal\Core\Entity\Query\Sql\Query::finish()

Finish the query by adding fields, GROUP BY and range.

Return value

$this Returns the called object.

File

core/lib/Drupal/Core/Entity/Query/Sql/Query.php, line 243

Class

Query
The SQL storage entity query class.

Namespace

Drupal\Core\Entity\Query\Sql

Code

protected function finish() {
  $this
    ->initializePager();
  if ($this->range) {
    $this->sqlQuery
      ->range($this->range['start'], $this->range['length']);
  }
  foreach ($this->sqlGroupBy as $field) {
    $this->sqlQuery
      ->groupBy($field);
  }
  foreach ($this->sqlFields as $field) {
    $this->sqlQuery
      ->addField($field[0], $field[1], $field[2] ?? NULL);
  }
  return $this;
}