summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-06-27 00:34:05 +0200
committerserg@serg.mylan <>2004-06-27 00:34:05 +0200
commit3236093b8b6f720439a727614c56da3979eb88bc (patch)
tree151ce8b4c121d0c2f780c0853b00e9439f0601c2 /mysql-test/t
parenta5c8b3ee59c25db5d042a828bccd5a1f5343b919 (diff)
downloadmariadb-git-3236093b8b6f720439a727614c56da3979eb88bc.tar.gz
removed using lex->select_lex.options is SHOW TABLE [STATUS] commands (BUG#4288)
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/ps.test12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test
index a3232fb15e9..35f9b193fe4 100644
--- a/mysql-test/t/ps.test
+++ b/mysql-test/t/ps.test
@@ -194,3 +194,15 @@ execute stmt1 using @id1, @id2;
select name from t1 where id=1 or id=6;
deallocate prepare stmt1;
drop table t1;
+
+#
+# SHOW TABLE STATUS test
+#
+create table t1 ( a int primary key, b varchar(30)) engine = MYISAM ;
+prepare stmt1 from ' show table status from test like ''t1%'' ';
+--replace_column 12 # 13 # 14 #
+execute stmt1;
+--replace_column 12 # 13 # 14 #
+show table status from test like 't1%' ;
+deallocate prepare stmt1 ;
+drop table t1;