mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Make storage engines "pluggable", handlerton work
This commit is contained in:
@@ -209,18 +209,18 @@ SELECT "a\\b", "a\\\'b", "a""\\b", "a""\\\'b";
|
||||
# is not available
|
||||
#
|
||||
|
||||
set session sql_mode = 'NO_ENGINE_SUBSTITUTION';
|
||||
--error 1289
|
||||
create table t1 (a int) engine=isam;
|
||||
--error 1146
|
||||
show create table t1;
|
||||
drop table if exists t1;
|
||||
|
||||
# for comparison, lets see the warnings...
|
||||
set session sql_mode = '';
|
||||
create table t1 (a int) engine=isam;
|
||||
show create table t1;
|
||||
drop table t1;
|
||||
#set session sql_mode = 'NO_ENGINE_SUBSTITUTION';
|
||||
#--error 1289
|
||||
#create table t1 (a int) engine=isam;
|
||||
#--error 1146
|
||||
#show create table t1;
|
||||
#drop table if exists t1;
|
||||
#
|
||||
## for comparison, lets see the warnings...
|
||||
#set session sql_mode = '';
|
||||
#create table t1 (a int) engine=isam;
|
||||
#show create table t1;
|
||||
#drop table t1;
|
||||
|
||||
#
|
||||
# Bug #6903: ANSI_QUOTES does not come into play with SHOW CREATE FUNCTION
|
||||
|
||||
Reference in New Issue
Block a user