~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/t/deprecated_features.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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