1
by brian
clean slate |
1 |
--error ER_UNKNOWN_SYSTEM_VARIABLE |
2 |
set global log_bin_trust_routine_creators=1; |
|
3 |
--error ER_UNKNOWN_SYSTEM_VARIABLE |
|
4 |
set table_type='MyISAM'; |
|
5 |
--error ER_UNKNOWN_SYSTEM_VARIABLE |
|
6 |
select @@table_type='MyISAM'; |
|
7 |
--error ER_PARSE_ERROR |
|
8 |
show plugin; |
|
9 |
--error ER_PARSE_ERROR |
|
10 |
load table t1 from master; |
|
11 |
--error ER_PARSE_ERROR |
|
12 |
load data from master; |
|
13 |
--error ER_PARSE_ERROR |
|
14 |
SHOW INNODB STATUS; |
|
15 |
--error ER_PARSE_ERROR |
|
16 |
create table t1 (t6 timestamp(6)); |
|
17 |
--error ER_PARSE_ERROR |
|
18 |
create table t1 (t6 timestamp) type=myisam; |
|
19 |
--error ER_PARSE_ERROR |
|
20 |
show table types; |
|
21 |
--error ER_PARSE_ERROR |
|
22 |
show mutex status; |
|
23 |