diff options
author | unknown <msvensson@neptunus.(none)> | 2005-10-28 11:00:54 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-10-28 11:00:54 +0200 |
commit | 747d08230f4b841c029ece102ed0dec2b96d9eee (patch) | |
tree | cab20fd69d3450e59c240fdca1a7305d4dd1c98e /mysql-test/t/myisam.test | |
parent | 69bdb7abcba3cff7a2ec76f950779eb3dd46a67b (diff) | |
parent | 9723cd7b7937437dfcf45571a1ba0fc9debf3c92 (diff) | |
download | mariadb-git-747d08230f4b841c029ece102ed0dec2b96d9eee.tar.gz |
Merge neptunus.(none):/home/msvensson/mysql/ssl_test/my50-ssl_test
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
client/mysqltest.c:
Auto merged
mysql-test/mysql-test-run.pl:
Auto merged
mysql-test/t/information_schema.test:
Auto merged
mysql-test/t/myisam.test:
Auto merged
mysql-test/t/sp-security.test:
Auto merged
sql/mysqld.cc:
Auto merged
sql/sql_show.cc:
Auto merged
sql/structs.h:
Auto merged
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r-- | mysql-test/t/myisam.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test index 2612917de87..f15b4d54275 100644 --- a/mysql-test/t/myisam.test +++ b/mysql-test/t/myisam.test @@ -722,6 +722,7 @@ insert into t1 values (10),(11),(12); select * from t1; check table t1; drop table t1; +disconnect con1; # Same test with dynamic record length create table t1 (a int, b varchar(30) default "hello"); @@ -746,8 +747,10 @@ insert into t1 (a) values (10),(11),(12); select a from t1; check table t1; drop table t1; +disconnect con1; set global concurrent_insert=@save_concurrent_insert; + # BUG#9622 - ANALYZE TABLE and ALTER TABLE .. ENABLE INDEX produce # different statistics on the same table with NULL values. create table t1 (a int, key(a)); |