Right now I has tried to update some table data straight from the Table Data grid and it has failed.
My table consist of 20 rows, one of them is with data type float.
It HAS primary key which is integer and auto_increment.
When I try to update some data, SQLyog generates a statement which says:
UPDATE <table> SET field1=value1, field2=value2, ... fieldN=valueN
WHERE field1=value1 AND field2=value2 AND ... AND fieldN=valueN.
It fails because it includes also float field in the WHERE part ("where price=10.50").
I think that in this case it only should use primary key (WHERE id=NNN) and not all possible fields, or am I wrong????
It probably affects not only 5.1 beta/RC.
I can also provide table structure if needed.
