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

« back to all changes in this revision

Viewing changes to mysql-test/suite/ndb/r/ndb_temporary.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
DROP TABLE IF EXISTS t1;
 
2
create temporary table t1 (a int key) engine=ndb;
 
3
ERROR HY000: Table storage engine 'ndbcluster' does not support the create option 'TEMPORARY'
 
4
create temporary table t1 (a int key) engine=myisam;
 
5
alter table t1 engine=ndb;
 
6
ERROR HY000: Table storage engine 'ndbcluster' does not support the create option 'TEMPORARY'
 
7
drop table t1;
 
8
SET SESSION storage_engine=NDBCLUSTER;
 
9
create table t1 (a int key);
 
10
select engine from information_schema.tables where table_name = 't1';
 
11
engine
 
12
ndbcluster
 
13
drop table t1;
 
14
create temporary table t1 (a int key);
 
15
show create table t1;
 
16
Table   Create Table
 
17
t1      CREATE TEMPORARY TABLE `t1` (
 
18
  `a` int(11) NOT NULL,
 
19
  PRIMARY KEY (`a`)
 
20
) ENGINE=MyISAM DEFAULT CHARSET=latin1
 
21
drop table t1;