protected function Schema::_createKeySql in Drupal 10
1 call to Schema::_createKeySql()
- Schema::_createIndexSql in core/
modules/ pgsql/ src/ Driver/ Database/ pgsql/ Schema.php
File
- core/
modules/ pgsql/ src/ Driver/ Database/ pgsql/ Schema.php, line 468
Class
- Schema
- PostgreSQL implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\pgsql\Driver\Database\pgsqlCode
protected function _createKeySql($fields) {
$return = [];
foreach ($fields as $field) {
if (is_array($field)) {
$return[] = 'substr(' . $field[0] . ', 1, ' . $field[1] . ')';
}
else {
$return[] = '"' . $field . '"';
}
}
return implode(', ', $return);
}