~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon/t/falcon_bug_33213.test

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_falcon.inc
 
2
 
 
3
#
 
4
# BUG#33213 - Wrong CREATE TABLESPACE error when using existing DATAFILE
 
5
#
 
6
 
 
7
CREATE TABLESPACE ts1 ADD DATAFILE 'ts1.fts' ENGINE=Falcon;
 
8
--error ER_TABLESPACE_DATAFILE_EXIST
 
9
CREATE TABLESPACE ts2 ADD DATAFILE 'ts1.fts' ENGINE=Falcon;
 
10
DROP TABLESPACE ts1 ENGINE=Falcon;