diff options
author | monty@mashka.mysql.fi <> | 2003-02-08 01:12:58 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-08 01:12:58 +0200 |
commit | 7388c5f1618380f5ac29c3ab40d48da0372a3d57 (patch) | |
tree | d54b65dfc052978dab95842c84f1a39745ef0d0c /mysql-test/t/explain.test | |
parent | 60556efaca57f2db6a9c6484e788623b5591e1e3 (diff) | |
parent | d92022f7f018fb1b19efa8a04ed06217600c16f7 (diff) | |
download | mariadb-git-7388c5f1618380f5ac29c3ab40d48da0372a3d57.tar.gz |
merge
Diffstat (limited to 'mysql-test/t/explain.test')
-rw-r--r-- | mysql-test/t/explain.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/explain.test b/mysql-test/t/explain.test index 1cf8c5e93e1..ff1803368b9 100644 --- a/mysql-test/t/explain.test +++ b/mysql-test/t/explain.test @@ -22,3 +22,11 @@ explain select * from t1 ignore key (str,str,foo) where str="foo"; drop table t1; explain select 1; + +create table t1 (a int not null); +explain select count(*) from t1; +insert into t1 values(1); +explain select count(*) from t1; +insert into t1 values(1); +explain select count(*) from t1; +drop table t1; |