summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb/r/card_sk_2.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/tokudb/r/card_sk_2.result')
-rw-r--r--mysql-test/suite/tokudb/r/card_sk_2.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/suite/tokudb/r/card_sk_2.result b/mysql-test/suite/tokudb/r/card_sk_2.result
index c087bad3b18..8ff57b63e5d 100644
--- a/mysql-test/suite/tokudb/r/card_sk_2.result
+++ b/mysql-test/suite/tokudb/r/card_sk_2.result
@@ -4,18 +4,18 @@ create table tt (a int, b int, key(a,b));
insert into tt values (0,0),(0,1),(1,0),(1,1);
show indexes from tt;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_comment
-tt 1 a 1 a A NULL NULL NULL YES BTREE
-tt 1 a 2 b A NULL NULL NULL YES BTREE
+tt 1 a 1 a A 4 NULL NULL YES BTREE
+tt 1 a 2 b A 4 NULL NULL YES BTREE
analyze table tt;
Table Op Msg_type Msg_text
test.tt analyze status OK
show indexes from tt;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_comment
-tt 1 a 1 a A 2 NULL NULL YES BTREE
+tt 1 a 1 a A 4 NULL NULL YES BTREE
tt 1 a 2 b A 4 NULL NULL YES BTREE
flush tables;
show indexes from tt;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Index_comment
-tt 1 a 1 a A 2 NULL NULL YES BTREE
+tt 1 a 1 a A 4 NULL NULL YES BTREE
tt 1 a 2 b A 4 NULL NULL YES BTREE
drop table tt;