MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
bug28309_skip.inc
1 # Skip tests which suffer from
2 # Bug#28309 First insert violates unique constraint
3 # - was "memory" table empty?
4 # if the folowing conditions are fulfilled:
5 # - MySQL Version is 5.0 (Bug is fixed in 5.1 and up)
6 # - use of embedded server
7 # - run on a case insensitive filesystem
8 #
9 let $value= query_get_value(SHOW VARIABLES LIKE 'lower_case_file_system', Value, 1);
10 if (`SELECT '$value' = 'ON' AND VERSION() LIKE '5.0%embedded%'`)
11 {
12  skip # Test requires backport of fix for Bug#28309 First insert violates unique constraint - was "memory" table empty ?;
13 }