Firefox 5.0
1) execute SQL
---------------------------
create database `test`;
use `test`;
CREATE TABLE `test` (
`a` int(1) COMMENT 'comment',
`b` int(1)
);
insert into `test` values (1, 2);
---------------------------
2) browse table `test`. Click on inline edit button for the row.
3) Change the value "1" to "3"
4) Click 'save' button, get error:
--------------------------------
UPDATE `test` SET `a comment` = '12' WHERE `test`.`a` =1 AND `test`.`b` =2 LIMIT 1
MySQL said: Documentation
#1054 - Unknown column 'a
comment' in 'field list'
------------------------------------
This bug seems to exist in QA_3_4 branch, but not in master.
Please find a proposed patch here:
https://sourceforge.net/tracker/?func=detail&aid=3375489&group_id=23067&atid=377410
Fixed by patch mentioned below.