From ec0f18c28f2ac03345cc48263e7f6b88db233b75 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 31 Aug 2005 13:23:24 +0400 Subject: [PATCH] Fix group_min_max.test - myisam may return slightly row count estimate on amd64 --- mysql-test/r/group_min_max.result | 2 +- mysql-test/t/group_min_max.test | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mysql-test/r/group_min_max.result b/mysql-test/r/group_min_max.result index 5b3e6f30710..e26f32e49e5 100644 --- a/mysql-test/r/group_min_max.result +++ b/mysql-test/r/group_min_max.result @@ -1984,7 +1984,7 @@ Table Op Msg_type Msg_text test.t1 analyze status Table is already up to date explain select distinct a1 from bug12672 where pk_col not in (1,2,3,4); id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE bug12672 range PRIMARY PRIMARY 4 NULL 93 Using where; Using temporary +1 SIMPLE bug12672 range PRIMARY PRIMARY 4 NULL # Using where; Using temporary select distinct a1 from bug12672 where pk_col not in (1,2,3,4); a1 a diff --git a/mysql-test/t/group_min_max.test b/mysql-test/t/group_min_max.test index dd5f8b43248..da3fdec80d2 100644 --- a/mysql-test/t/group_min_max.test +++ b/mysql-test/t/group_min_max.test @@ -666,6 +666,7 @@ create index idx12672_1 on bug12672 (a1,a2,b,c); create index idx12672_2 on bug12672 (a1,a2,b); analyze table t1; +--replace_column 9 # explain select distinct a1 from bug12672 where pk_col not in (1,2,3,4); select distinct a1 from bug12672 where pk_col not in (1,2,3,4);