Commit 23cc6fe8 authored by ingo@mysql.com's avatar ingo@mysql.com

Bug#9112 - Merge table with composite index producing invalid results with some queries

After merge fix
parent bf89c139
......@@ -312,7 +312,11 @@ create table t3 (
) engine=myisam;
insert into t2 values ( null, '');
# We may have insufficient accuracy for 16 digits of '9'.
# Suppress a "truncate" warning due to accuracy problems.
--disable_warnings
insert into t2 values ( 9999999999.999999, '');
--enable_warnings
insert into t3 select * from t2;
select min(a), max(a) from t1;
flush tables;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment