1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

tests fixed as we implement informative error message

mysql-test/r/partition_list.result:
  test result fixed
mysql-test/r/partition_range.result:
  test result fixed
mysql-test/t/partition_list.test:
  test fixed
mysql-test/t/partition_range.test:
  test fixed
This commit is contained in:
unknown
2005-12-15 20:56:14 +04:00
parent 36736898f3
commit 9008814ef7
4 changed files with 20 additions and 20 deletions

View File

@ -94,7 +94,7 @@ INSERT into t1 values (1, 1, 1);
INSERT into t1 values (6, 1, 1);
INSERT into t1 values (10, 1, 1);
INSERT into t1 values (15, 1, 1);
ERROR HY000: Got error 1 from storage engine
ERROR HY000: Table has no partition for value 15
select * from t1;
a b c
1 1 1
@ -206,7 +206,7 @@ subpartition x22 engine myisam nodegroup 1)
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
ERROR HY000: Got error 1 from storage engine
ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
@ -243,7 +243,7 @@ subpartition x22 tablespace t2 engine myisam)
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
ERROR HY000: Got error 1 from storage engine
ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
@ -280,7 +280,7 @@ subpartition x22 tablespace t2)
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
ERROR HY000: Got error 1 from storage engine
ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
@ -317,7 +317,7 @@ subpartition x22 engine myisam)
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
ERROR HY000: Got error 1 from storage engine
ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1