Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Platforms/MySQL/MySQLMetadataProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ private function getIndexColumns(?string $tableName): iterable
WHERE %s
AND INDEX_NAME != 'PRIMARY'
ORDER BY TABLE_NAME,
INDEX_NAME,
SEQ_IN_INDEX
SQL,
implode(' AND ', $conditions),
Expand Down
1 change: 1 addition & 0 deletions src/Schema/MySQLSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ protected function selectIndexColumns(string $databaseName, ?string $tableName =
FROM information_schema.STATISTICS
WHERE %s
ORDER BY TABLE_NAME,
INDEX_NAME,
SEQ_IN_INDEX
SQL,
implode(' AND ', $conditions),
Expand Down