- Do a query like "SELECT a.id, a.name, a.* FROM a"
- Swap from read only to edit mode
- Go through and set the a.name to NULL
- Move to the next row
SQLyog does an update statement - UPDATE a SET name = NULL WHERE a.id = ?
Actual:
SQLyog does an update statement - UPDATE a SET id = ?, name = NULL, id=?, name="fish" WHERE a.id = ?
- Do a query like "SELECT a.id, a.name, a.* FROM a"
- Swap to edit mode
- Highlight a.id (so the cell has focus and is selected)
- Set a.name to NULL
a.name becomes NULL
Actual:
a.name becomes the highlighted value
See this bug and that bug