summaryrefslogtreecommitdiff
path: root/mysql-test/suite/tokudb/r/card_drop_pk.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/tokudb/r/card_drop_pk.result')
-rw-r--r--mysql-test/suite/tokudb/r/card_drop_pk.result16
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/suite/tokudb/r/card_drop_pk.result b/mysql-test/suite/tokudb/r/card_drop_pk.result
index bdbd9a3f097..2369d88c274 100644
--- a/mysql-test/suite/tokudb/r/card_drop_pk.result
+++ b/mysql-test/suite/tokudb/r/card_drop_pk.result
@@ -5,24 +5,24 @@ insert into tt values (1,0,0),(2,0,0),(3,0,1),(4,0,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 0 PRIMARY 1 a A 4 NULL NULL BTREE
-tt 1 b 1 b A NULL NULL NULL YES BTREE
-tt 1 c 1 c A NULL NULL NULL YES BTREE
+tt 1 b 1 b A 4 NULL NULL YES BTREE
+tt 1 c 1 c 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 0 PRIMARY 1 a A 4 NULL NULL BTREE
-tt 1 b 1 b A 1 NULL NULL YES BTREE
-tt 1 c 1 c A 2 NULL NULL YES BTREE
+tt 1 b 1 b A 2 NULL NULL YES BTREE
+tt 1 c 1 c A 4 NULL NULL YES BTREE
alter table tt drop primary key;
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 b 1 b A NULL NULL NULL YES BTREE
-tt 1 c 1 c A NULL NULL NULL YES BTREE
+tt 1 b 1 b A 4 NULL NULL YES BTREE
+tt 1 c 1 c 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 b 1 b A NULL NULL NULL YES BTREE
-tt 1 c 1 c A NULL NULL NULL YES BTREE
+tt 1 b 1 b A 4 NULL NULL YES BTREE
+tt 1 c 1 c A 4 NULL NULL YES BTREE
drop table tt;