mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
tests fixed as we implement informative error message
This commit is contained in:
@@ -97,7 +97,7 @@ partitions 3
|
||||
INSERT into t1 values (1, 1, 1);
|
||||
INSERT into t1 values (6, 1, 1);
|
||||
INSERT into t1 values (10, 1, 1);
|
||||
--error 1030
|
||||
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
||||
INSERT into t1 values (15, 1, 1);
|
||||
|
||||
select * from t1;
|
||||
@@ -219,7 +219,7 @@ subpartition by hash (a+b)
|
||||
|
||||
INSERT into t1 VALUES (1,1,1);
|
||||
INSERT into t1 VALUES (4,1,1);
|
||||
--error 1030
|
||||
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
||||
INSERT into t1 VALUES (5,1,1);
|
||||
|
||||
SELECT * from t1;
|
||||
@@ -260,7 +260,7 @@ subpartition by hash (a+b)
|
||||
|
||||
INSERT into t1 VALUES (1,1,1);
|
||||
INSERT into t1 VALUES (4,1,1);
|
||||
--error 1030
|
||||
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
||||
INSERT into t1 VALUES (5,1,1);
|
||||
|
||||
SELECT * from t1;
|
||||
@@ -301,7 +301,7 @@ subpartition by hash (a+b)
|
||||
|
||||
INSERT into t1 VALUES (1,1,1);
|
||||
INSERT into t1 VALUES (4,1,1);
|
||||
--error 1030
|
||||
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
||||
INSERT into t1 VALUES (5,1,1);
|
||||
|
||||
SELECT * from t1;
|
||||
@@ -342,7 +342,7 @@ subpartition by hash (a+b)
|
||||
|
||||
INSERT into t1 VALUES (1,1,1);
|
||||
INSERT into t1 VALUES (4,1,1);
|
||||
--error 1030
|
||||
--error ER_NO_PARTITION_FOR_GIVEN_VALUE
|
||||
INSERT into t1 VALUES (5,1,1);
|
||||
|
||||
SELECT * from t1;
|
||||
|
||||
Reference in New Issue
Block a user