-
Notifications
You must be signed in to change notification settings - Fork 1
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
Support MySQL 5.7 #3
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3 +/- ##
==========================================
+ Coverage 72.72% 77.72% +4.99%
==========================================
Files 6 6
Lines 176 193 +17
==========================================
+ Hits 128 150 +22
+ Misses 48 43 -5
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor thing but LGTM
@@ -35,7 +35,7 @@ public struct FluentQueuesDriver: QueuesDriver { | |||
public func shutdown() {} | |||
} | |||
|
|||
private struct FailingQueue: Queue { | |||
/*private*/ struct FailingQueue: Queue { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/*private*/ struct FailingQueue: Queue { | |
struct FailingQueue: Queue { |
MySQL before 8.0 (why is anyone still using 5.7? 😭) didn't support
SKIP LOCKED
. Also has a temporary fix for a bug in PostgresKit.