You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jackbayliss thanks for this PR. But MySQL (tested with latest 8.4) does not like TEXT columns in indexes:
SQLSTATE[42000]: Syntax error or access violation: 1170 BLOB/TEXT column 'connection' used in key specification without a key length
So, currently it's also broken in laravel/laravel
Any idea why connection and queue originally were created as TEXT instead of just VARCHAR (string)? Should I submit a PR to fix this?
The other mystery is, why Laravel-News has presented this PR as single indexes on queue and failed_at, while Taylor's and your PR have implemented a compound index over connection, queue, failed_at which is a different thing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I noticed these indexes were added in the laravel repo so thought it be good to have here too - just consistent across the board then.
Just means everyone who generates the migration going forward gets the performance benefit automatically too.
Feel free to close if no use 🫡 (hyb)