1########################################################################
2# Bug #856404: Crash when query_cache_strip_comments enabled
3########################################################################
4
5--disable_warnings
6DROP TABLE IF EXISTS table17_int;
7DROP TABLE IF EXISTS table30_int;
8--enable_warnings
9
10CREATE TABLE `table17_int` (pk integer auto_increment primary key, `col_char_10_not_null_key` char(10), `col_enum_not_null_key` int);
11CREATE TABLE `table30_int` (pk integer auto_increment primary key, `col_enum_not_null_key` int);
12SELECT X . `pk` FROM `table17_int` AS X LEFT JOIN `table30_int` AS Y USING ( `col_enum_not_null_key` ) WHERE X . `col_char_10_not_null_key` != '   you need to translate Views labels into other languages, consider installing the <a href=\" !path\">Internationalization</a> package\'s Views translation module.' LIMIT 7  /*Generated by THREAD_ID 1*/;
13
14DROP TABLE table17_int;
15DROP TABLE table30_int;
16