~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
set global log_bin_trust_routine_creators=1;
2
ERROR HY000: Unknown system variable 'log_bin_trust_routine_creators'
3
set table_type='MyISAM';
4
ERROR HY000: Unknown system variable 'table_type'
5
select @@table_type='MyISAM';
6
ERROR HY000: Unknown system variable 'table_type'
7
show plugin;
8
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'plugin' at line 1
9
load table t1 from master;
10
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'table t1 from master' at line 1
11
load data from master;
12
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from master' at line 1
13
SHOW INNODB STATUS;
14
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INNODB STATUS' at line 1
15
create table t1 (t6 timestamp(6));
16
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(6))' at line 1
17
create table t1 (t6 timestamp) type=myisam;
18
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'type=myisam' at line 1
19
show table types;
20
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'types' at line 1
21
show mutex status;
22
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mutex status' at line 1