diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2011-06-24 21:43:31 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2011-06-24 21:43:31 +0400 |
commit | 7880039fc0a2c406fe924e3dcbc09f0691e49007 (patch) | |
tree | 618d80f7f5a95cf7d1ee9b16bf9bfc1e6d8fbf74 /mysql-test/r/partition_error.result | |
parent | d6b0767c8c819655e0a90b8f9c33356f92832c87 (diff) | |
parent | 3d4e3472886a7d3fd939c0cc0b49637fc8c48498 (diff) | |
download | mariadb-git-7880039fc0a2c406fe924e3dcbc09f0691e49007.tar.gz |
Merge 5.2 -> 5.3
(testcase for #798597 now crashes)
Diffstat (limited to 'mysql-test/r/partition_error.result')
-rw-r--r-- | mysql-test/r/partition_error.result | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/r/partition_error.result b/mysql-test/r/partition_error.result index 0791b979da1..4df5f1702c7 100644 --- a/mysql-test/r/partition_error.result +++ b/mysql-test/r/partition_error.result @@ -657,15 +657,16 @@ CREATE TABLE t1 (a INT) PARTITION BY HASH (a); FLUSH TABLES; CHECK TABLE t1; Table Op Msg_type Msg_text +test.t1 check Error File './test/t1.par' not found (Errcode: 2) test.t1 check Error Failed to read from the .par file test.t1 check Error Incorrect information in file: './test/t1.frm' test.t1 check error Corrupt SELECT * FROM t1; -ERROR HY000: Failed to read from the .par file +ERROR HY000: File './test/t1.par' not found (Errcode: 2) # Note that it is currently impossible to drop a partitioned table # without the .par file DROP TABLE t1; -ERROR 42S02: Unknown table 't1' +ERROR HY000: File './test/t1.par' not found (Errcode: 2) # # Bug#49477: Assertion `0' failed in ha_partition.cc:5530 # with temporary table and partitions |