You are here

protected function Schema::_createIndexSql in Drupal 10

2 calls to Schema::_createIndexSql()
Schema::addIndex in core/modules/pgsql/src/Driver/Database/pgsql/Schema.php
Add an index.
Schema::createTableSql in core/modules/pgsql/src/Driver/Database/pgsql/Schema.php
Generate SQL to create a new table from a Drupal schema definition.

File

core/modules/pgsql/src/Driver/Database/pgsql/Schema.php, line 999

Class

Schema
PostgreSQL implementation of \Drupal\Core\Database\Schema.

Namespace

Drupal\pgsql\Driver\Database\pgsql

Code

protected function _createIndexSql($table, $name, $fields) {
  $query = 'CREATE INDEX ' . $this
    ->ensureIdentifiersLength($table, $name, 'idx') . ' ON {' . $table . '} (';
  $query .= $this
    ->_createKeySql($fields) . ')';
  return $query;
}