207
217
DROP TABLE a, d, h, k, n , p ;
208
218
--echo End Bug#592444 test
210
--echo Bug#586051 start
211
--echo -Server allowing JOIN on NULL values in certain cases if query includes ORDER BY clause
214
DROP TABLE IF EXISTS `i`;
216
`col_int_key` int DEFAULT NULL,
217
`pk` int NOT NULL AUTO_INCREMENT,
219
KEY `col_int_key` (`col_int_key`)
222
INSERT INTO `i` VALUES (-480247808,1),(-1066663936,2),(NULL,3),(NULL,4),(-1583808512,5),(NULL,6),(NULL,7),(NULL,8),(0,9),(-219152384,10);
224
DROP TABLE IF EXISTS `b`;
226
`col_int_key` int DEFAULT NULL,
227
`col_int` int DEFAULT NULL,
228
`pk` int NOT NULL AUTO_INCREMENT,
230
KEY `col_int_key` (`col_int_key`)
233
INSERT INTO `b` VALUES (NULL,7,1);
236
#/* Begin test case for query 0 */
238
SELECT table2 .`col_int` field3
239
FROM i table1 JOIN b table2 ON table1 .`col_int_key` = table2 .`col_int_key`
240
WHERE table1 .`pk` IN ( 4 )
242
#/* End of test case for query 0 */
244
#/* Begin test case for query 1 */
246
SELECT table2 .`col_int` field3
247
FROM i table1 JOIN b table2 ON table1 .`col_int_key` = table2 .`col_int_key`
248
WHERE table1 .`pk` IN ( 4 ) /* TRANSFORM_OUTCOME_UNORDERED_MATCH */ ;
250
#/* End of test case for query 1 */
255
--echo End Bug#586051 test
259
--echo - Adding STRAIGHT_JOIN to certain queries results in loss of returned rows
261
DROP TABLE IF EXISTS `g`;
262
DROP TABLE IF EXISTS `e`;
263
DROP TABLE IF EXISTS `m`;
264
DROP TABLE IF EXISTS `a`;
268
`pk` int NOT NULL AUTO_INCREMENT,
269
`col_int` int DEFAULT NULL,
273
INSERT INTO `g` VALUES (1,NULL),(2,1607860224),(3,NULL),(4,822673408),(5,1907556352),(6,NULL),(7,NULL),(8,NULL);
276
`col_int_key` int DEFAULT NULL,
277
`pk` int NOT NULL AUTO_INCREMENT,
279
KEY `col_int_key` (`col_int_key`)
282
INSERT INTO `e` VALUES (NULL,1),(1862205440,2),(1,3),(-517472256,4),(1341587456,5),(5,6);
285
`col_int` int DEFAULT NULL,
286
`pk` int NOT NULL AUTO_INCREMENT,
290
INSERT INTO `m` VALUES (1,1),(NULL,2),(NULL,3),(-207224832,4),(714801152,5),(-1265106944,6),(2023948288,7),(865599488,8),(1,9),(-1895301120,10),(3,11),(9,12),(5,13),(NULL,14),(NULL,15),(1,16),(-224657408,17),(2,18),(-1219493888,19),(7,20),(1,21),(NULL,22),(NULL,23);
293
`col_int_key` int DEFAULT NULL,
294
`pk` int NOT NULL AUTO_INCREMENT,
296
KEY `col_int_key` (`col_int_key`)
300
SELECT COUNT(table1 .`col_int`)
301
FROM g table1 RIGHT JOIN e table2 LEFT JOIN m table3 LEFT JOIN a table5 ON table5 .`col_int_key` ON table2 .`col_int_key` = table3 .`col_int` ON table2 .`pk` ;
303
SELECT STRAIGHT_JOIN COUNT(table1 .`col_int`)
304
FROM g table1 RIGHT JOIN e table2 LEFT JOIN m table3 LEFT JOIN a table5 ON table5 .`col_int_key` ON table2 .`col_int_key` = table3 .`col_int` ON table2 .`pk` /* TRANSFORM_OUTCOME_UNORDERED_MATCH */;
311
--echo End Bug#585628 test
315
--echo - Adding STRAIGHT_JOIN to certain queries results in a large number of duplicate rows
317
DROP TABLE IF EXISTS `m`;
318
DROP TABLE IF EXISTS `o`;
322
`col_int` int DEFAULT NULL,
323
`pk` int NOT NULL AUTO_INCREMENT,
327
INSERT INTO `m` VALUES (1,1),(NULL,2),(NULL,3),(-207224832,4),(714801152,5),(-1265106944,6),(2023948288,7),(865599488,8),(1,9),(-1895301120,10),(3,11),(9,12),(5,13),(NULL,14),(NULL,15),(1,16),(-224657408,17),(2,18),(-1219493888,19),(7,20),(1,21),(NULL,22),(NULL,23);
330
`col_int_key` int DEFAULT NULL,
331
`pk` int NOT NULL AUTO_INCREMENT,
333
KEY `col_int_key` (`col_int_key`)
336
INSERT INTO `o` VALUES (4,1),(-867368960,2),(655032320,3),(1,4),(NULL,5),(-118751232,6),(7,7),(1,8),(3,9),(-518324224,10),(7,11),(1129709568,12),(-2081357824,13),(6,14),(NULL,15),(NULL,16),(NULL,17);
338
#/* Begin test case for query 0 */
340
SELECT COUNT(table1 .`pk`)
341
FROM m table1 RIGHT JOIN o JOIN o table3 ON table3 .`col_int_key` ON table1 .`col_int` = table3 .`col_int_key` ;
343
SELECT STRAIGHT_JOIN COUNT(table1 .`pk`)
344
FROM m table1 RIGHT JOIN o JOIN o table3 ON table3 .`col_int_key` ON table1 .`col_int` = table3 .`col_int_key` /* TRANSFORM_OUTCOME_UNORDERED_MATCH */;
348
--echo End Bug#585644 test
351
--echo Crash / assertion failed -
352
--echo "void drizzled::Select_Lex::print(drizzled::Session*, drizzled::String*, drizzled::enum_query_type)") at assert.c:81
353
--echo #3 0x00000000006282fb in drizzled::Select_Lex::print
354
--echo (this=0x3911418, session=0x0, str=0x7f26b77fd7c0, query_type=drizzled::QT_ORDINARY) at drizzled/sql_select.cc:6592
357
DROP TABLE IF EXISTS `aa`,`bb`,`dd`;
360
DROP TABLE IF EXISTS `aa`;
362
`pk` int NOT NULL AUTO_INCREMENT,
363
`col_enum_not_null_key` enum('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') NOT NULL,
364
`col_int_not_null_key` int NOT NULL,
365
`col_char_10_not_null_key` varchar(10) NOT NULL,
366
`col_int_key` int DEFAULT NULL,
367
`col_text_not_null` text NOT NULL,
368
`col_char_1024_key` varchar(1024) DEFAULT NULL,
369
`col_bigint_key` bigint DEFAULT NULL,
370
`col_int_not_null` int NOT NULL,
372
KEY `col_enum_not_null_key` (`col_enum_not_null_key`),
373
KEY `col_int_not_null_key` (`col_int_not_null_key`),
374
KEY `col_char_10_not_null_key` (`col_char_10_not_null_key`),
375
KEY `col_int_key` (`col_int_key`),
376
KEY `col_char_1024_key` (`col_char_1024_key`(255)),
377
KEY `col_bigint_key` (`col_bigint_key`)
380
INSERT INTO `aa` VALUES (1,'s',-523436032,'at',2071265280,'','LPUJD',NULL,-1974206464),(2,'p',1,'VDMDI',1,'','don\'t',NULL,3),(3,'n',621543424,'WPTIG',NULL,'','think',-2842897264777625600,-274595840),(4,'o',880148480,'your',1734213632,'','on',NULL,295501824),(5,'b',1963982848,'q',1505558528,'','YTUNQ',3557843705622691840,9),(6,'c',8,'OOQXU',8,'','o',-4628011567076605952,2),(7,'p',1445462016,'RDODX',NULL,'','so',-5755881798756204544,-1601306624),(8,'i',0,'e',-1685520384,'','get',NULL,-1770323968),(9,'f',-747241472,'FEKXH',NULL,'','l',NULL,256311296),(10,'p',6,'GTHOM',-1431502848,'','h',-5719290051783819264,4);
383
`col_enum_not_null_key` enum('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') NOT NULL,
384
`col_text_not_null` text NOT NULL,
385
`col_char_10_not_null_key` varchar(10) NOT NULL,
386
`col_bigint_key` bigint DEFAULT NULL,
387
`col_char_1024_key` varchar(1024) DEFAULT NULL,
388
`pk` int NOT NULL AUTO_INCREMENT,
389
`col_int_not_null_key` int NOT NULL,
390
`col_int_key` int DEFAULT NULL,
391
`col_int_not_null` int NOT NULL,
393
KEY `col_enum_not_null_key` (`col_enum_not_null_key`),
394
KEY `col_char_10_not_null_key` (`col_char_10_not_null_key`),
395
KEY `col_bigint_key` (`col_bigint_key`),
396
KEY `col_char_1024_key` (`col_char_1024_key`(255)),
397
KEY `col_int_not_null_key` (`col_int_not_null_key`),
398
KEY `col_int_key` (`col_int_key`)
401
INSERT INTO `bb` VALUES ('r','','DCJRX',NULL,'ANVSO',1,1,NULL,763953152),('a','','x',NULL,'JBJPT',2,1,4,-132513792),('s','','ZMHDL',-647673921411219456,'KAHJT',3,-1536425984,-628359168,3),('i','','SJGHS',-5702401553181179904,'q',4,-1443495936,-2114322432,-1349844992),('w','','his',NULL,'l',5,2,105971712,-2019688448),('v','','m',4,'ULWFL',6,0,2,-38207488),('d','','i',NULL,'YOIXU',7,8,NULL,3),('f','','d',8,'that\'s',8,476315648,NULL,8),('y','','from',NULL,'ZPPIG',9,5,-607322112,-1129054208),('o','','h',NULL,'like',10,5,0,-415629312);
404
`col_int_not_null` int NOT NULL,
405
`col_int_key` int DEFAULT NULL,
406
`col_enum_not_null_key` enum('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') NOT NULL,
407
`col_bigint_key` bigint DEFAULT NULL,
408
`col_char_10_not_null_key` varchar(10) NOT NULL,
409
`col_int_not_null_key` int NOT NULL,
410
`col_text_not_null` text NOT NULL,
411
`pk` int NOT NULL AUTO_INCREMENT,
412
`col_char_1024_key` varchar(1024) DEFAULT NULL,
414
KEY `col_int_key` (`col_int_key`),
415
KEY `col_enum_not_null_key` (`col_enum_not_null_key`),
416
KEY `col_bigint_key` (`col_bigint_key`),
417
KEY `col_char_10_not_null_key` (`col_char_10_not_null_key`),
418
KEY `col_int_not_null_key` (`col_int_not_null_key`),
419
KEY `col_char_1024_key` (`col_char_1024_key`(255))
422
INSERT INTO `dd` VALUES (1777795072,NULL,'g',0,'was',-1866203136,'',1,'g');
424
--error ER_BAD_FIELD_ERROR
425
EXPLAIN EXTENDED SELECT
426
table2 . `col_enum_not_null_key` AS field1 ,
427
table1 . `col_char_1024_key` AS field2
428
FROM ( ( SELECT SUBQUERY1_t1 . * FROM ( BB AS SUBQUERY1_t1 RIGHT JOIN AA AS SUBQUERY1_t2 ON (SUBQUERY1_t2 . `col_int_not_null_key` = SUBQUERY1_t1 . `col_int_key` ) ) ) AS table1 INNER JOIN ( ( DD AS table2 STRAIGHT_JOIN BB AS table3 ON (table3 . `col_char_10_not_null_key` = table2 . `col_char_key` ) ) ) ON (table3 . `col_char_key` = table2 . `col_text_not_null` ) ) WHERE ( ( SELECT MIN( SUBQUERY2_t2 . `col_char_10_not_null_key` ) AS SUBQUERY2_field1 FROM AA AS SUBQUERY2_t1 WHERE ( EXISTS ( ( SELECT CHILD_SUBQUERY1_t2 . `col_char_10_not_null_key` AS CHILD_SUBQUERY1_field1 FROM ( BB AS CHILD_SUBQUERY1_t1 INNER JOIN AA AS CHILD_SUBQUERY1_t2 ON (CHILD_SUBQUERY1_t2 . `col_int_key` = CHILD_SUBQUERY1_t1 . `pk` ) ) WHERE ( CHILD_SUBQUERY1_t2 . `col_char_10_not_null_key` > 'y' AND CHILD_SUBQUERY1_t1 . `col_int_not_null_key` = CHILD_SUBQUERY1_t1 . `col_int_not_null` ) HAVING CHILD_SUBQUERY1_t2 . `col_bigint_key` >= 3) ) AND SUBQUERY2_t1 . `col_int_key` != 8 ) ) IS NOT NULL ) AND ( table1 . `col_int_key` = 160 AND table1 . `col_int_key` = 197 ) AND table3 . `col_text_not_null` >= 'g' GROUP BY field1, field2;
434
--echo End Bug#608416
437
--echo Crash/segfault - in drizzled::DTCollation::set (this=0x60, dt=...) at drizzled/dtcollation.cc:51 51 collation= dt.collation
439
DROP TABLE IF EXISTS `aa`;
440
DROP TABLE IF EXISTS `bb`;
441
DROP TABLE IF EXISTS `cc`;
445
`pk` int NOT NULL AUTO_INCREMENT,
446
`col_char_10_key` varchar(10) DEFAULT NULL,
447
`col_char_1024_not_null_key` varchar(1024) NOT NULL,
448
`col_int_not_null_key` int NOT NULL,
449
`col_int_key` int DEFAULT NULL,
450
`col_bigint_key` bigint DEFAULT NULL,
452
KEY `col_char_10_key` (`col_char_10_key`),
453
KEY `col_char_1024_not_null_key` (`col_char_1024_not_null_key`(255)),
454
KEY `col_int_not_null_key` (`col_int_not_null_key`),
455
KEY `col_int_key` (`col_int_key`),
456
KEY `col_bigint_key` (`col_bigint_key`)
459
INSERT INTO `aa` VALUES (1,'ZDPHP','well',-523436032,2071265280,NULL),(2,'AIJUR','on',1,1,NULL),(3,'NEMIU','ASUNK',621543424,NULL,-2842897264777625600),(4,'HMHFF','d',880148480,1734213632,NULL),(5,'XIXMV','m',1963982848,1505558528,3557843705622691840),(6,'k','to',8,8,-4628011567076605952),(7,'GJZBY','t',1445462016,NULL,-5755881798756204544),(8,'UGMMS','m',0,-1685520384,NULL),(9,'p','USQVA',-747241472,NULL,NULL),(10,'RMZLQ','FUBQO',6,-1431502848,-5719290051783819264);
462
`col_enum_not_null_key` enum('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z') NOT NULL,
463
`col_text_not_null_key` text NOT NULL,
464
`col_char_10_not_null_key` varchar(10) NOT NULL,
465
`col_char_1024_not_null_key` varchar(1024) NOT NULL,
466
`col_bigint_key` bigint DEFAULT NULL,
467
`pk` int NOT NULL AUTO_INCREMENT,
468
`col_int_key` int DEFAULT NULL,
469
`col_int_not_null` int NOT NULL,
471
KEY `col_enum_not_null_key` (`col_enum_not_null_key`),
472
KEY `col_text_not_null_key` (`col_text_not_null_key`(255)),
473
KEY `col_char_10_not_null_key` (`col_char_10_not_null_key`),
474
KEY `col_char_1024_not_null_key` (`col_char_1024_not_null_key`(255)),
475
KEY `col_bigint_key` (`col_bigint_key`),
476
KEY `col_int_key` (`col_int_key`)
479
INSERT INTO `bb` VALUES ('r','','DCJRX','IHTVZ',NULL,1,NULL,763953152),('a','','x','a',NULL,2,4,-132513792),('s','','ZMHDL','s',-647673921411219456,3,-628359168,3),('i','','SJGHS','d',-5702401553181179904,4,-2114322432,-1349844992),('w','','his','TTNNK',NULL,5,105971712,-2019688448),('v','','m','GKTRR',4,6,2,-38207488),('d','','i','ZZDWO',NULL,7,NULL,3),('f','','d','up',8,8,NULL,8),('y','','from','would',NULL,9,-607322112,-1129054208),('o','','h','JNAFV',NULL,10,0,-415629312);
482
`pk` int NOT NULL AUTO_INCREMENT,
483
`col_int_not_null` int NOT NULL,
484
`col_int_not_null_key` int NOT NULL,
486
KEY `col_int_not_null_key` (`col_int_not_null_key`)
489
INSERT INTO `cc` VALUES (1,9,-1665335296),(2,2,0),(3,0,1736638464),(4,-1205207040,-2136604672),(5,-330170368,3),(6,7,309592064),(7,-858259456,4),(8,-1265565696,1614217216),(9,532217856,1822883840),(10,-1106640896,1),(11,7,0),(12,-2060517376,8),(13,9,248709120),(14,3,8),(15,1633353728,-1300496384),(16,621150208,1776549888),(17,6,2053242880),(18,8,-2143551488),(19,7,1),(20,1232142336,7),(21,1089404928,1946615808),(22,2,-141492224),(23,-1999896576,1),(24,-858324992,2062483456),(25,2034565120,2115698688),(26,-2020933632,-1325596672),(27,108658688,1),(28,-1947402240,759889920),(29,-1483669504,9),(30,2,-1726873600),(31,711720960,1),(32,4,8),(33,0,381353984),(34,2,-1951727616),(35,412811264,-1688338432),(36,3,6),(37,4,-1386217472),(38,335544320,680787968),(39,-1573322752,8),(40,-1445724160,3),(41,1,8),(42,7,9),(43,998375424,-1370816512),(44,1,6),(45,6,4),(46,6,612171776),(47,6,9),(48,4,693370880),(49,1413349376,1978990592),(50,-1399783424,4),(51,5,-40304640),(52,4,-562626560),(53,1834352640,6),(54,9,6),(55,37158912,4),(56,1434648576,6),(57,1995636736,0),(58,2,-1440415744),(59,8,9),(60,-1991114752,-883687424),(61,8,5),(62,2,8),(63,-2013528064,79429632),(64,7,4128768),(65,1269104640,-1750990848),(66,563675136,1545011200),(67,707330048,3),(68,-460324864,-959643648),(69,436142080,1),(70,-1233977344,1),(71,-602931200,6),(72,6,1964769280),(73,741867520,1),(74,2045575168,4),(75,2,-117506048),(76,-1779499008,0),(77,6,1717436416),(78,1460862976,1473773568),(79,6,140902400),(80,8,4),(81,1401683968,1398669312),(82,-853671936,-1045561344),(83,58261504,-817299456),(84,7,7),(85,0,-976027648),(86,-1865809920,1135542272),(87,-1795358720,8),(88,1723465728,6),(89,-1031340032,2),(90,9,1),(91,5,-1602879488),(92,-938999808,4),(93,-2075787264,6),(94,379453440,-336789504),(95,347734016,1),(96,0,-1887174656),(97,4,8),(98,4,-1159266304),(99,1025703936,523763712),(100,1,1434124288);
491
SELECT table2 . `col_enum_not_null_key` AS field1
492
FROM ( BB AS table1 STRAIGHT_JOIN
493
( ( BB AS table2 INNER JOIN
495
(table3 . `col_int_not_null` = table2 . `col_bigint_key` AND ( 6, 6 )
496
IN ( SELECT SUBQUERY1_t1 . `col_bigint_key` AS SUBQUERY1_field1 , SUM( SUBQUERY1_t1 . `col_int_key` ) AS SUBQUERY1_field2 FROM ( AA AS SUBQUERY1_t1 RIGHT OUTER JOIN AA AS SUBQUERY1_t2 ON (SUBQUERY1_t2 . `col_int_not_null_key` = SUBQUERY1_t1 . `col_int_not_null_key` ) ) WHERE SUBQUERY1_t2 . `col_char_1024_not_null_key` != SUBQUERY1_t1 . `col_char_10_key` ) ) ) ) ON (table3 . `col_int_not_null_key` = table2 . `pk` ) ) WHERE ( ( 'a', 't' ) IN ( SELECT SUBQUERY2_t1 . `col_char_1024_not_null_key` AS SUBQUERY2_field1 , SUBQUERY2_t1 . `col_text_not_null_key` AS SUBQUERY2_field2 FROM BB AS SUBQUERY2_t1 WHERE SUBQUERY2_t1 . `col_char_1024_not_null_key` >= 'y' ) ) AND ( table1 . `col_int_key` > 20 AND table1 . `col_int_key` < ( 20 + 229 ) OR table1 . `pk` > 20 AND table1 . `pk` < ( 20 + 158 ) ) OR ( table2 . `col_char_1024_not_null_key` < table2 . `col_char_1024_not_null_key` AND table1 . `col_int_not_null` IS NULL ) HAVING field1 <> 56 ORDER BY table1 . `col_char_10_not_null_key` , table3 .`pk` DESC;
498
DROP TABLE `aa`, `bb`, `cc` ;
499
--echo End Bug#615419