Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Select.php

function Select::__clone

Overrides Query::__clone

File

core/lib/Drupal/Core/Database/Query/Select.php, line 925

Class

Select
Query builder for SELECT statements.

Namespace

Drupal\Core\Database\Query

Code

public function __clone() {
    parent::__clone();
    // On cloning, also clone the dependent objects. However, we do not
    // want to clone the database connection object as that would duplicate the
    // connection itself.
    $this->condition = clone $this->condition;
    $this->having = clone $this->having;
    foreach ($this->union as $key => $aggregate) {
        $this->union[$key]['query'] = clone $aggregate['query'];
    }
    foreach ($this->tables as $alias => $table) {
        if ($table['table'] instanceof SelectInterface) {
            $this->tables[$alias]['table'] = clone $table['table'];
        }
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal