summaryrefslogtreecommitdiff
path: root/mysql-test/r/analyze.result
diff options
context:
space:
mode:
authorunknown <SergeyV@selena.>2005-12-01 20:29:48 +0300
committerunknown <SergeyV@selena.>2005-12-01 20:29:48 +0300
commit9dcae0472cacaab1ee00b99321c820f0e8ab1af3 (patch)
tree07f333115d4887c14494bf77b99ca19999ff34ef /mysql-test/r/analyze.result
parentbabaa74e8a2c6548a726ace86ab1cf0c7c323e0e (diff)
parent147be17067dc699aec2f12e7a52992ffc329d8b1 (diff)
downloadmariadb-git-9dcae0472cacaab1ee00b99321c820f0e8ab1af3.tar.gz
Merge svlasenko@bk-internal.mysql.com:/home/bk/mysql-5.0
into selena.:H:/MYSQL/src/#14902-mysql-5.0 mysql-test/r/analyze.result: SCCS merged mysql-test/t/analyze.test: SCCS merged
Diffstat (limited to 'mysql-test/r/analyze.result')
-rw-r--r--mysql-test/r/analyze.result9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/analyze.result b/mysql-test/r/analyze.result
index 796b382f5d6..17686d597a4 100644
--- a/mysql-test/r/analyze.result
+++ b/mysql-test/r/analyze.result
@@ -30,6 +30,15 @@ check table t1;
Table Op Msg_type Msg_text
test.t1 check status OK
drop table t1;
+create table t1 (a mediumtext, fulltext key key1(a)) charset utf8 collate utf8_general_ci engine myisam;
+insert into t1 values ('hello');
+analyze table t1;
+Table Op Msg_type Msg_text
+test.t1 analyze status OK
+analyze table t1;
+Table Op Msg_type Msg_text
+test.t1 analyze status Table is already up to date
+drop table t1;
CREATE TABLE t1 (a int);
prepare stmt1 from "SELECT * FROM t1 PROCEDURE ANALYSE()";
execute stmt1;