-
Notifications
You must be signed in to change notification settings - Fork 556
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 REPLACE
statement and PRIORITY
clause of INSERT
#1072
Conversation
- Mysql replace statement was added - Mysql insert and replace statement priority part were added Examples: REPLACE DELAYED INTO tasks (title, priority) VALUES ('Test Some Inserts', 1) INSERT HIGH_PRIORITY INTO tasks (title, priority) VALUES ('Test Some Inserts', 1)
Pull Request Test Coverage Report for Build 7308586737
💛 - Coveralls |
REPLACE
statement and PRIORITY
clause of INSERT
Retrigger CI |
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.
Thank you for the contribution @emin100 -- I think this is looking pretty close. I left some suggestions for your consideration.
@alamb thanks for the suggestions. I changed the pr. |
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.
Thank you @emin100 -- this is looking quite close. Thank you for sticking with it
@alamb If possible, can you release a new version that includes this change? |
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.
Thank you @emin100 -- this looks good to me. Thank you for sticking with it
New feature support
Examples:
REPLACE DELAYED INTO tasks (title, priority) VALUES ('Test Some Inserts', 1)
INSERT HIGH_PRIORITY INTO tasks (title, priority) VALUES ('Test Some Inserts', 1)