Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
- CONNECT rebuilds INSERT statements without other options such as INSERT IGNORE or ON DUPLICATE KEY UPDATE.
- CONNECT maps these INTO INSERT statements or INSERT DELAYED (if the undocumented "delayed=1" option is used)
- CONNECT could support other options (or even support recognizing these from the source query)
- Since IGNORE is a simple but useuful feature, and CONNECT supports INSERT DELAYED already (very similar in implementation i.e opt list) I've built support in the same way
PR to follow
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Assignee | Anel Husakovic [ anel ] |
Assignee | Anel Husakovic [ anel ] | Michael Widenius [ monty ] |
Assignee | Michael Widenius [ monty ] | Daniel Black [ danblack ] |
Fix Version/s | 10.3.36 [ 27513 ] | |
Fix Version/s | 10.4.26 [ 27511 ] | |
Fix Version/s | 10.5.17 [ 27509 ] | |
Fix Version/s | 10.6.9 [ 27507 ] | |
Fix Version/s | 10.7.5 [ 27505 ] | |
Fix Version/s | 10.8.4 [ 27503 ] | |
Fix Version/s | 10.9.2 [ 27115 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Fixed the bug that this was ignoring the ignore option.
Thanks splitice for the a patch