Home
last modified time | relevance | path

Searched refs:oldIndexName (Results 1 – 25 of 94) sorted by relevance

1234

/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php219 * @param string $oldIndexName The name of the index to rename from.
228 public function renameIndex($oldIndexName, $newIndexName = null) argument
230 $oldIndexName = $this->normalizeIdentifier($oldIndexName);
233 if ($oldIndexName === $normalizedNewIndexName) {
237 if ( ! $this->hasIndex($oldIndexName)) {
238 throw SchemaException::indexDoesNotExist($oldIndexName, $this->_name);
245 $oldIndex = $this->_indexes[$oldIndexName];
253 unset($this->_indexes[$oldIndexName]);
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php219 * @param string $oldIndexName The name of the index to rename from.
228 public function renameIndex($oldIndexName, $newIndexName = null) argument
230 $oldIndexName = $this->normalizeIdentifier($oldIndexName);
233 if ($oldIndexName === $normalizedNewIndexName) {
237 if ( ! $this->hasIndex($oldIndexName)) {
238 throw SchemaException::indexDoesNotExist($oldIndexName, $this->_name);
245 $oldIndex = $this->_indexes[$oldIndexName];
253 unset($this->_indexes[$oldIndexName]);
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php193 * @param string $oldIndexName The name of the index to rename from.
202 public function renameIndex($oldIndexName, $newIndexName = null) argument
204 $oldIndexName = $this->normalizeIdentifier($oldIndexName);
207 if ($oldIndexName === $normalizedNewIndexName) {
211 if (! $this->hasIndex($oldIndexName)) {
212 throw SchemaException::indexDoesNotExist($oldIndexName, $this->_name);
219 $oldIndex = $this->_indexes[$oldIndexName];
227 unset($this->_indexes[$oldIndexName]);
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/
H A DTable.php190 * @param string $oldIndexName The name of the index to rename from.
199 public function renameIndex($oldIndexName, $newIndexName = null) argument
201 $oldIndexName = $this->normalizeIdentifier($oldIndexName);
204 if ($oldIndexName === $normalizedNewIndexName) {
208 if (! $this->hasIndex($oldIndexName)) {
209 throw SchemaException::indexDoesNotExist($oldIndexName, $this->_name);
216 $oldIndex = $this->_indexes[$oldIndexName];
224 unset($this->_indexes[$oldIndexName]);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php53 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
56 …'ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($t…
H A DDB2Platform.php718 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
722 $oldIndexName = $schema . '.' . $oldIndexName;
725 return array('RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this));
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php53 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
56 …'ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($t…
H A DDB2Platform.php686 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
690 $oldIndexName = $schema . '.' . $oldIndexName;
693 return array('RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this));
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php744 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
748 $oldIndexName = $schema . '.' . $oldIndexName;
751 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/www/elgg/elgg-3.3.23/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php744 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
748 $oldIndexName = $schema . '.' . $oldIndexName;
751 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php730 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
734 $oldIndexName = $schema . '.' . $oldIndexName;
737 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/www/webtrees20/webtrees-2.0.19/webtrees/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php744 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
748 $oldIndexName = $schema . '.' . $oldIndexName;
751 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php737 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
741 $oldIndexName = $schema . '.' . $oldIndexName;
744 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/www/typo3-10/typo3_src-10.4.25/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php744 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
748 $oldIndexName = $schema . '.' . $oldIndexName;
751 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/www/typo3-11/typo3_src-11.5.7/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
H A DDB2Platform.php744 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
748 $oldIndexName = $schema . '.' . $oldIndexName;
751 return ['RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuotedName($this)];
/dports/www/owncloud/owncloud/lib/composer/doctrine/dbal/lib/Doctrine/DBAL/Platforms/
H A DMySQL57Platform.php49 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
51 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
/dports/www/nextcloud/nextcloud/3rdparty/doctrine/dbal/src/Platforms/
H A DMySQL57Platform.php56 protected function getRenameIndexSQL($oldIndexName, Index $index, $tableName) argument
58 …return ['ALTER TABLE ' . $tableName . ' RENAME INDEX ' . $oldIndexName . ' TO ' . $index->getQuote…
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/Controllers/Table/
H A DIndexesController.php212 $oldIndexName = $_POST['old_index'];
214 if ($oldIndexName === 'PRIMARY') {
227 $oldIndexName,

1234