~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon/t/falcon_bug_33212.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
# Bug #33212:DROP TABLESPACE does not fail on non-existing Falcon
 
4
#             tablespace.
 
5
#
 
6
--echo *** Bug #33212 ***
 
7
 
 
8
# ----------------------------------------------------- #
 
9
# --- Initialisation                                --- #
 
10
# ----------------------------------------------------- #
 
11
let $engine = 'Falcon';
 
12
eval SET @@storage_engine = $engine;
 
13
 
 
14
--disable_warnings
 
15
DROP TABLE IF EXISTS t1;
 
16
--enable_warnings
 
17
 
 
18
 
 
19
# ----------------------------------------------------- #
 
20
# --- Test                                          --- #
 
21
# ----------------------------------------------------- #
 
22
--error ER_NO_SUCH_TABLESPACE
 
23
eval DROP TABLESPACE ts1 ENGINE $engine;
 
24
 
 
25
# ----------------------------------------------------- #
 
26
# --- Check                                         --- #
 
27
# ----------------------------------------------------- #
 
28
# Check not applicable here.
 
29
#SELECT count(*) FROM t1;
 
30
 
 
31
# ----------------------------------------------------- #
 
32
# --- Final cleanup                                 --- #
 
33
# ----------------------------------------------------- #
 
34
# Cleanup not applicable here.
 
35
#DROP TABLE t1;