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

« back to all changes in this revision

Viewing changes to mysql-test/t/warnings_engine_disabled.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
#
 
2
# Only run this test with a compiled in but disabled
 
3
# engine
 
4
#
 
5
disable_query_log;
 
6
--require r/true.require
 
7
select support = 'Disabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
 
8
enable_query_log;
 
9
 
 
10
 
 
11
#
 
12
# Test for handler type, will select MyISAM and print a warning
 
13
# about that - since NDB is disabled
 
14
#
 
15
create table t1 (id int) engine=NDB;
 
16
alter table t1 engine=NDB;
 
17
drop table t1;
 
18
 
 
19