MDEV-5544 Custom errors (generated from storage engine) not getting returned by mariadb

This commit is contained in:
Sergei Golubchik 2014-02-01 09:32:59 +01:00
commit 27fbb637d3
7 changed files with 37 additions and 6 deletions

View file

@ -5379,7 +5379,7 @@ ERROR 42000: The storage engine for the table doesn't support nullable columns
SHOW WARNINGS;
Level Code Message
Error 1178 The storage engine for the table doesn't support nullable columns
Error 1005 Can't create table `test`.`t1` (errno: 138 "Unsupported extension used for table")
Warning 1112 Table 't1' uses an extension that doesn't exist in this MariaDB version
create table t1 (c1 tinyblob not null) engine=csv;
insert into t1 values("This");
update t1 set c1="That" where c1="This";