mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
error messages: name the storage engine explicitly,
instead of "used storage engine" and similar changes.
This commit is contained in:
@ -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")
|
||||
Error 1005 Can't create table `test`.`t1` (errno: 138 "Unsupported extension used for table")
|
||||
create table t1 (c1 tinyblob not null) engine=csv;
|
||||
insert into t1 values("This");
|
||||
update t1 set c1="That" where c1="This";
|
||||
|
Reference in New Issue
Block a user