Description:
The behavior of the "Delete" button in every sensible app is to swallows characters from the right, or no nothing if the cursor is in the rightmost position.
This allows you to tap on this button for a while to clear everything that's on the right.
Mysql, however, adds an exception to act as a Backspace if the cursor is either at the rightmost position or one to the left.
This behavior is unconventional, misleading, and prevents the possibility to long-tap Delete to everything that's on the right.
How to repeat:
Type 12345678
Move the cursor back by one place (to between 7 and 8)
Press Delete
Expected behavior: buffer is 1234567, the cursor is at the end
Actual behavior: buffer is 1234567, the cursor is incorrectly between 6 and 7
Type 12345678, leave the cursor there at the end
Press Delete
Expected behavior: nothing should happen
Actual behavior: buffer incorrectly becomes 1234567, the cursor is between 6 and 7 (that is, it has moved back by 2 positions on a single keypress)
Suggested fix:
Please make it behave as it behaves in every other application.