function Select::__construct

Constructs a Select object.

Parameters

\Drupal\Core\Database\Connection $connection: Database connection object.

string|\Drupal\Core\Database\Query\SelectInterface $table: The table name or subquery that is being queried.

string $alias: The alias for the table.

array $options: Array of query options.

Overrides 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']);
}

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