protected function Query::finish in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/Query/Sql/Query.php \Drupal\Core\Entity\Query\Sql\Query::finish()
- 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\SqlCode
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;
}