Commit 9c0d8092 authored by unknown's avatar unknown
Browse files

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

After merge fix

parent c08721e5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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;