blob: 40a0f145ef07dc87fe671bafdabc7ac5c07accea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#### suite/funcs_1/t/innodb_triggers.test
# InnoDB tables should be used
#
# 1. Check if InnoDB is available
--source include/have_innodb.inc
# 2. Set $engine_type
let $engine_type= innodb;
# Create some objects needed in many testcases
USE test;
--source suite/funcs_1/include/innodb_tb3.inc
--source suite/funcs_1/triggers/triggers_09.inc
DROP TABLE test.tb3;
|