~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon/r/falcon_bug_31311.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
*** Bug #31311 ***
 
2
SET @@storage_engine = 'Falcon';
 
3
DROP TABLE IF EXISTS t1;
 
4
DROP TABLESPACE ts1 ENGINE 'Falcon';
 
5
CREATE TABLESPACE `ts 1` ADD DATAFILE 'ts2.fts' ENGINE 'Falcon';
 
6
CREATE TABLE t1(a int) TABLESPACE `ts 1`;
 
7
SHOW CREATE TABLE t1;
 
8
Table   Create Table
 
9
t1      CREATE TABLE `t1` (
 
10
  `a` int(11) DEFAULT NULL
 
11
) /*!50100 TABLESPACE `ts 1` */ ENGINE=Falcon DEFAULT CHARSET=latin1
 
12
SELECT count(*) FROM t1;
 
13
count(*)
 
14
0
 
15
DROP TABLE t1;
 
16
DROP TABLESPACE `ts 1` ENGINE 'Falcon';