summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2005-06-07 16:34:10 +0300
committerunknown <monty@mysql.com>2005-06-07 16:34:10 +0300
commit270832b0a7deb73351f4ff9634118352155c24d4 (patch)
tree8b370763117959959030cca54a5de410ebbcd402 /mysql-test/r
parent01a5d650c01730286f3cade3ac506167671c3f07 (diff)
parent93722fded286965225f729a7ad84e16402d7b1bb (diff)
downloadmariadb-git-270832b0a7deb73351f4ff9634118352155c24d4.tar.gz
Merge mysql.com:/home/my/mysql-4.0 into mysql.com:/home/my/mysql-4.1
BitKeeper/etc/logging_ok: auto-union myisam/mi_check.c: Auto merged
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/analyze.result32
1 files changed, 32 insertions, 0 deletions
diff --git a/mysql-test/r/analyze.result b/mysql-test/r/analyze.result
new file mode 100644
index 00000000000..0b44a502b13
--- /dev/null
+++ b/mysql-test/r/analyze.result
@@ -0,0 +1,32 @@
+create table t1 (a bigint);
+lock tables t1 write;
+insert into t1 values(0);
+analyze table t1;
+Table Op Msg_type Msg_text
+test.t1 analyze status OK
+unlock tables;
+check table t1;
+Table Op Msg_type Msg_text
+test.t1 check status OK
+drop table t1;
+create table t1 (a bigint);
+insert into t1 values(0);
+lock tables t1 write;
+delete from t1;
+analyze table t1;
+Table Op Msg_type Msg_text
+test.t1 analyze status OK
+unlock tables;
+check table t1;
+Table Op Msg_type Msg_text
+test.t1 check status OK
+drop table t1;
+create table t1 (a bigint);
+insert into t1 values(0);
+analyze table t1;
+Table Op Msg_type Msg_text
+test.t1 analyze status OK
+check table t1;
+Table Op Msg_type Msg_text
+test.t1 check status OK
+drop table t1;