Hi, I would like to submit a little bug :
with HEIDI 9.3.0.4984 32bits the query :
select sum(mt) totalmt, replace(sum(mt),'.',',') formattotalmt from test;
give this result grid :
totalmt formattotalmt
15.50 15,50
with HEIDI 10.1.0.5464 32bits and 64bits, and even with the nightly build 10.1.0.5572 the same query :
select sum(mt) totalmt, replace(sum(mt),'.',',') formattotalmt from test;
give an erroneus grid :
totalmt HEX(formattotalmt)
15.50 0x31352C3530
Here is the little script to create the table test :
create table test(
ID int(11) not null,
Mt double(10,2) NOT NULL DEFAULT '0.00',
primary key(ID)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
insert into test values (1,10),(2,5.5);
Sincerely yours, Themis