Commit 7897baf7 authored by dlenev@mysql.com's avatar dlenev@mysql.com

Merge bk-internal.mysql.com:/home/bk/mysql-4.1

into mysql.com:/home/dlenev/src/mysql-4.1-bg6462
parents 3455e345 30f0c495
...@@ -529,6 +529,7 @@ show keys from t1; ...@@ -529,6 +529,7 @@ show keys from t1;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
t1 1 a 1 a A NULL NULL NULL YES BTREE disabled t1 1 a 1 a A NULL NULL NULL YES BTREE disabled
create table t2 (a int); create table t2 (a int);
set @@rand_seed1=31415926,@@rand_seed2=2718281828;
insert t1 select * from t2; insert t1 select * from t2;
show keys from t1; show keys from t1;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
......
...@@ -498,11 +498,12 @@ alter table t1 disable keys; ...@@ -498,11 +498,12 @@ alter table t1 disable keys;
show keys from t1; show keys from t1;
create table t2 (a int); create table t2 (a int);
let $i=1000; let $i=1000;
set @@rand_seed1=31415926,@@rand_seed2=2718281828;
--disable_query_log --disable_query_log
while ($i) while ($i)
{ {
dec $i; dec $i;
eval insert t2 values (rand()*100000); insert t2 values (rand()*100000);
} }
--enable_query_log --enable_query_log
insert t1 select * from t2; insert t1 select * from t2;
......
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