summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/vcol_view_myisam.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/vcol/r/vcol_view_myisam.result')
-rw-r--r--mysql-test/suite/vcol/r/vcol_view_myisam.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/suite/vcol/r/vcol_view_myisam.result b/mysql-test/suite/vcol/r/vcol_view_myisam.result
index e3fb2ec61ca..acd3389e170 100644
--- a/mysql-test/suite/vcol/r/vcol_view_myisam.result
+++ b/mysql-test/suite/vcol/r/vcol_view_myisam.result
@@ -270,11 +270,11 @@ c int as (-a) persistent);
create view v1 as select * from t1 where b > -2 && c >-2 with check option;
insert into v1 (a) values (1);
insert into v1 (a) values (3);
-ERROR HY000: CHECK OPTION failed 'test.v1'
+ERROR HY000: CONSTRAINT 'WITH CHECK OPTION' failed for 'test.v1'
insert ignore into v1 (a) values (2),(3),(0);
Warnings:
-Warning 1369 CHECK OPTION failed 'test.v1'
-Warning 1369 CHECK OPTION failed 'test.v1'
+Warning 1369 CONSTRAINT 'WITH CHECK OPTION' failed for 'test.v1'
+Warning 1369 CONSTRAINT 'WITH CHECK OPTION' failed for 'test.v1'
select * from t1;
a b c
1 -1 -1