mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
add current databasefilter when querying index
This commit is contained in:
parent
1758ae782d
commit
51e79be23d
1 changed files with 2 additions and 1 deletions
|
|
@ -68,7 +68,8 @@ CREATE PROCEDURE `UmamiRenameIndexIfExists`(
|
||||||
INFORMATION_SCHEMA.STATISTICS
|
INFORMATION_SCHEMA.STATISTICS
|
||||||
WHERE
|
WHERE
|
||||||
TABLE_NAME = @tableName
|
TABLE_NAME = @tableName
|
||||||
AND INDEX_NAME = @currentIndexName;
|
AND INDEX_NAME = @currentIndexName
|
||||||
|
AND TABLE_SCHEMA = database();
|
||||||
|
|
||||||
SET @query = CONCAT(
|
SET @query = CONCAT(
|
||||||
'ALTER TABLE `', @tableName, '` RENAME INDEX `', @currentIndexName, '` TO `', @newIndexName, '`;'
|
'ALTER TABLE `', @tableName, '` RENAME INDEX `', @currentIndexName, '` TO `', @newIndexName, '`;'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue