8000 [Messenger] Adds option to force indexes creation in Mysql platform for Doctrine transport by gianiaz · Pull Request #45007 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Messenger] Adds option to force indexes creation in Mysql platform for Doctrine transport #45007

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
[Messenger] Code style on ConnectionTest.php
  • Loading branch information
gianiaz committed Jan 13, 2022
commit 17ec023b82cd3c8c79bbdfb59120504e65ae7e24
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ public function setupIndicesProvider(): iterable
yield 'MySQL with forced index' => [
MySQL57Platform::class,
[['queue_name'], ['available_at'], ['delivered_at']],
['force_indexes_creation' => true]
['force_indexes_creation' => true],
];

yield 'Other platforms' => [
Expand Down
0