mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
MDEV-5544 Custom errors (generated from storage engine) not getting returned by mariadb
This commit is contained in:
parent
a9c22c1888
commit
27fbb637d3
7 changed files with 37 additions and 6 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue