function Query::__clone

Implements the magic __clone method.

Reset fields and GROUP BY when cloning.

Overrides QueryBase::__clone

File

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

Class

Query
The SQL storage entity query class.

Namespace

Drupal\Core\Entity\Query\Sql

Code

public function __clone() {
  parent::__clone();
  $this->sqlFields = [];
  $this->sqlGroupBy = [];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.