diff options
author | unknown <svoj@mysql.com/april.(none)> | 2006-10-19 20:29:12 +0500 |
---|---|---|
committer | unknown <svoj@mysql.com/april.(none)> | 2006-10-19 20:29:12 +0500 |
commit | 94f337bb4d5593221ae257fcf18a439c87eb0fe9 (patch) | |
tree | 0f2d2e37afc2c226477d58ece36effbdf0a483ed /mysql-test/r/repair.result | |
parent | 9a77a540aaee949ec62038e718f0968b6f0fbcaf (diff) | |
download | mariadb-git-94f337bb4d5593221ae257fcf18a439c87eb0fe9.tar.gz |
After merge fix.
Diffstat (limited to 'mysql-test/r/repair.result')
-rw-r--r-- | mysql-test/r/repair.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/repair.result b/mysql-test/r/repair.result index e77d5c6bc92..1269c4c85a9 100644 --- a/mysql-test/r/repair.result +++ b/mysql-test/r/repair.result @@ -52,12 +52,6 @@ Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_par t1 1 a 1 a A 5 NULL NULL YES BTREE SET myisam_repair_threads=@@global.myisam_repair_threads; DROP TABLE t1; -DROP TABLE IF EXISTS tt1; -CREATE TEMPORARY TABLE tt1 (c1 INT); -REPAIR TABLE tt1 USE_FRM; -Table Op Msg_type Msg_text -tt1 repair error Cannot repair temporary table from .frm file -DROP TABLE tt1; CREATE TABLE t1(a INT); USE mysql; REPAIR TABLE test.t1 USE_FRM; @@ -96,3 +90,9 @@ test.t1 repair status OK SET myisam_repair_threads=@@global.myisam_repair_threads; SET myisam_sort_buffer_size=@@global.myisam_sort_buffer_size; DROP TABLE t1; +DROP TABLE IF EXISTS tt1; +CREATE TEMPORARY TABLE tt1 (c1 INT); +REPAIR TABLE tt1 USE_FRM; +Table Op Msg_type Msg_text +tt1 repair error Cannot repair temporary table from .frm file +DROP TABLE tt1; |