1# We use a separate test wrapper for engines not supporting native partitioning
2# since the test results will be different due to deprecation warnings. This test
3# wrapper be executed directly from MTR, and will include the core test setting
4# setting the ENGINE variable to be the default storage engine.
5--disable_warnings
6let $ENGINE=`SELECT variable_value FROM performance_schema.global_variables
7             WHERE variable_name = 'DEFAULT_STORAGE_ENGINE'`;
8if ($ENGINE == "InnoDB")
9{
10  skip Engines supporting native partitioning are not tested using this test wrapper;
11}
12--enable_warnings
13--source tc_partition_linear_key.test
14