[MDEV-15122] Simultaneous assignment for LOAD..SET Created: 2018-01-30 Updated: 2018-04-10 |
|
| Status: | Open |
| Project: | MariaDB Server |
| Component/s: | OTHER |
| Fix Version/s: | None |
| Type: | Task | Priority: | Major |
| Reporter: | Alexander Barkov | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Issue Links: |
|
||||||||||||||||||||
| Description |
|
We're going to have a new sql_mode soon for simultaneous assignments ( It would be nice to make LOAD..SET also honor this new sql_mode. Currently this script:
returns this:
With the new sql_mode, the third row should instead of (5,2,5) return (5,2,1), i.e. assignment of c should use the initial value of a which came from the file, before a=5 was done. |