function Schema::_createIndexSql
Same name in other branches
- 9 core/modules/pgsql/src/Driver/Database/pgsql/Schema.php \Drupal\pgsql\Driver\Database\pgsql\Schema::_createIndexSql()
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Schema.php \Drupal\pgsql\Driver\Database\pgsql\Schema::_createIndexSql()
- 11.x core/modules/pgsql/src/Driver/Database/pgsql/Schema.php \Drupal\pgsql\Driver\Database\pgsql\Schema::_createIndexSql()
2 calls to Schema::_createIndexSql()
- Schema::addIndex in core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Schema.php - Add an index.
- Schema::createTableSql in core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Schema.php - Generate SQL to create a new table from a Drupal schema definition.
File
-
core/
lib/ Drupal/ Core/ Database/ Driver/ pgsql/ Schema.php, line 1034
Class
- Schema
- PostgreSQL implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\Core\Database\Driver\pgsqlCode
protected function _createIndexSql($table, $name, $fields) {
$query = 'CREATE INDEX ' . $this->ensureIdentifiersLength($table, $name, 'idx') . ' ON {' . $table . '} (';
$query .= $this->_createKeySql($fields) . ')';
return $query;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.