~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/r/warnings_engine_disabled.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (id int) engine=NDB;
 
2
Warnings:
 
3
Warning 1286    Unknown table engine 'NDB'
 
4
Warning 1266    Using storage engine MyISAM for table 't1'
 
5
alter table t1 engine=NDB;
 
6
Warnings:
 
7
Warning 1286    Unknown table engine 'NDB'
 
8
drop table t1;
 
9
SELECT ENGINE, SUPPORT FROM INFORMATION_SCHEMA.ENGINES WHERE ENGINE='ndbcluster';
 
10
ENGINE  SUPPORT
 
11
ndbcluster      NO
 
12
SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE
 
13
PLUGIN_NAME='ndbcluster';
 
14
PLUGIN_NAME     PLUGIN_STATUS
 
15
ndbcluster      DISABLED