You are here

public function Select::__construct in Drupal 10

Same name in this branch
  1. 10 core/modules/sqlite/src/Driver/Database/sqlite/Select.php \Drupal\sqlite\Driver\Database\sqlite\Select::__construct()
  2. 10 core/modules/pgsql/src/Driver/Database/pgsql/Select.php \Drupal\pgsql\Driver\Database\pgsql\Select::__construct()
  3. 10 core/modules/mysql/src/Driver/Database/mysql/Select.php \Drupal\mysql\Driver\Database\mysql\Select::__construct()

File

core/modules/pgsql/src/Driver/Database/pgsql/Select.php, line 20

Class

Select
PostgreSQL implementation of \Drupal\Core\Database\Query\Select.

Namespace

Drupal\pgsql\Driver\Database\pgsql

Code

public function __construct(Connection $connection, $table, $alias = NULL, array $options = []) {

  // @todo Remove the __construct in Drupal 11.
  // @see https://www.drupal.org/project/drupal/issues/3256524
  parent::__construct($connection, $table, $alias, $options);
  unset($this->queryOptions['return']);
}