~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/t/639716.test

edit

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
INSERT INTO `c` VALUES (1,NULL,'h');
33
33
 
34
 
--error ER_INVALID_ENUM_VALUE
 
34
--error 1691
35
35
SELECT X . `col_int_key` FROM `c` AS X LEFT JOIN `a` AS Y USING ( `col_enum_key` ) WHERE X . `col_enum_key` = ( SELECT `col_int_not_null_key` FROM `aa` WHERE `pk` = 5 ) LIMIT 8 ;
36
36
 
37
37
DROP TABLE `a`,`aa`,`c`;