Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.5.9, 10.2(EOL), 10.3(EOL), 10.4(EOL), 10.5, 10.6
-
None
-
Red Hat 8
Description
The following procedure crashes the server if it is called twice, even with no data, it succeeds if you add a limit:
CREATE TABLE `TEST` ( |
`objectid` int(11) NOT NULL, |
`submissionid` int(11) DEFAULT NULL, |
`objectname` varchar(255) DEFAULT NULL, |
`objecturl` varchar(1000) DEFAULT NULL, |
`reviewercomment` varchar(1000) DEFAULT NULL, |
`isactive` tinyint(1) DEFAULT NULL, |
`createdon` datetime DEFAULT NULL, |
`createdby` varchar(255) DEFAULT NULL, |
`updatedon` datetime DEFAULT NULL, |
`updatedby` varchar(255) DEFAULT NULL |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
|
MariaDB [mytest]> DELIMITER $$
|
MariaDB [mytest]> CREATE OR REPLACE PROCEDURE `testsp_doesnot_works`() |
BEGIN |
SET SESSION group_concat_max_len = 100000000000; |
|
SELECT JSON_EXTRACT( |
IFNULL(
|
(
|
SELECT CONCAT( |
'[', |
GROUP_CONCAT(
|
JSON_OBJECT(
|
'objectId', objectId, |
'objectName', objectName,'objectUrl', objectUrl,'reviewerComment', reviewerComment,'createdOn', DATE_FORMAT(createdOn,"%Y-%m-%dT%H:%i:%sZ") |
)
|
),
|
']' |
)
|
),
|
'[]' |
),
|
'$' |
) AS comments |
FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST`) AS body; |
END$$ |
Query OK, 0 rows affected (0.004 sec) |
|
MariaDB [mytest]> DELIMITER ;
|
It succeeds if you replace:
FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST`) AS body; |
|
with |
|
{code:sql}
|
FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST` LIMIT 50 ) AS body; |
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Affects Version/s | 10.5.9 [ 25109 ] |
Component/s | Server [ 13907 ] |
Component/s | Server [ 13907 ] |
Component/s | Stored routines [ 13905 ] | |
Fix Version/s | 10.2 [ 14601 ] | |
Fix Version/s | 10.3 [ 22126 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Affects Version/s | 10.2 [ 14601 ] | |
Affects Version/s | 10.3 [ 22126 ] | |
Affects Version/s | 10.4 [ 22408 ] | |
Affects Version/s | 10.5 [ 23123 ] | |
Affects Version/s | 10.6 [ 24028 ] | |
Assignee | Oleksandr Byelkin [ sanja ] | |
Description |
The following procedure crashes the server if it is called twice, even with no data, it succeeds if you add a limit:
CREATE TABLE `TEST` ( `objectid` int(11) NOT NULL, `submissionid` int(11) DEFAULT NULL, `objectname` varchar(255) DEFAULT NULL, `objecturl` varchar(1000) DEFAULT NULL, `reviewercomment` varchar(1000) DEFAULT NULL, `isactive` tinyint(1) DEFAULT NULL, `createdon` datetime DEFAULT NULL, `createdby` varchar(255) DEFAULT NULL, `updatedon` datetime DEFAULT NULL, `updatedby` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; MariaDB [mytest]> DELIMITER $$ MariaDB [mytest]> CREATE OR REPLACE PROCEDURE `testsp_doesnot_works`() BEGIN SET SESSION group_concat_max_len = 100000000000; SELECT JSON_EXTRACT( IFNULL( ( SELECT CONCAT( '[', GROUP_CONCAT( JSON_OBJECT( 'objectId', objectId, 'objectName', objectName,'objectUrl', objectUrl,'reviewerComment', reviewerComment,'createdOn', DATE_FORMAT(createdOn,"%Y-%m-%dT%H:%i:%sZ") ) ), ']' ) ), '[]' ), '$' ) AS comments FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST`) AS body; END$$ Query OK, 0 rows affected (0.004 sec) MariaDB [mytest]> DELIMITER ; It succeeds if you replace: FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST`) AS body; with FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST` LIMIT 50 ) AS body; |
The following procedure crashes the server if it is called twice, even with no data, it succeeds if you add a limit:
{code:sql} CREATE TABLE `TEST` ( `objectid` int(11) NOT NULL, `submissionid` int(11) DEFAULT NULL, `objectname` varchar(255) DEFAULT NULL, `objecturl` varchar(1000) DEFAULT NULL, `reviewercomment` varchar(1000) DEFAULT NULL, `isactive` tinyint(1) DEFAULT NULL, `createdon` datetime DEFAULT NULL, `createdby` varchar(255) DEFAULT NULL, `updatedon` datetime DEFAULT NULL, `updatedby` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; MariaDB [mytest]> DELIMITER $$ MariaDB [mytest]> CREATE OR REPLACE PROCEDURE `testsp_doesnot_works`() BEGIN SET SESSION group_concat_max_len = 100000000000; SELECT JSON_EXTRACT( IFNULL( ( SELECT CONCAT( '[', GROUP_CONCAT( JSON_OBJECT( 'objectId', objectId, 'objectName', objectName,'objectUrl', objectUrl,'reviewerComment', reviewerComment,'createdOn', DATE_FORMAT(createdOn,"%Y-%m-%dT%H:%i:%sZ") ) ), ']' ) ), '[]' ), '$' ) AS comments FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST`) AS body; END$$ Query OK, 0 rows affected (0.004 sec) MariaDB [mytest]> DELIMITER ; {code} It succeeds if you replace: {code:sql} FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST`) AS body; with {code:sql} FROM(select objectId, objectName, objectUrl, reviewerComment, createdOn FROM `TEST` LIMIT 50 ) AS body; {code} |
Status | Open [ 1 ] | Confirmed [ 10101 ] |
Priority | Major [ 3 ] | Critical [ 2 ] |
Assignee | Oleksandr Byelkin [ sanja ] | Igor Babaev [ igor ] |
Workflow | MariaDB v3 [ 119916 ] | MariaDB v4 [ 144346 ] |
Status | Confirmed [ 10101 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Fix Version/s | 10.2.42 [ 26803 ] | |
Fix Version/s | 10.3.33 [ 26805 ] | |
Fix Version/s | 10.4.23 [ 26807 ] | |
Fix Version/s | 10.5.14 [ 26809 ] | |
Fix Version/s | 10.6.6 [ 26811 ] | |
Fix Version/s | 10.7.2 [ 26813 ] | |
Fix Version/s | 10.2 [ 14601 ] | |
Fix Version/s | 10.3 [ 22126 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Zendesk Related Tickets | 175270 |
Reproducible as described.
Here is an MTR edition of the very same test case from the description:
--source include/have_innodb.inc
--delimiter $$
BEGIN
IFNULL(
(
GROUP_CONCAT(
JSON_OBJECT(
)
),
)
),
),
--delimiter ;
CALL testsp_doesnot_works();
CALL testsp_doesnot_works();
10.2 545cba13
#3 <signal handler called>
#4 0x00005645bc0b362c in THD::change_item_tree (this=0x7f5c88000d90, place=0x0, new_value=0x7f5c88087f18) at /data/src/10.2/sql/sql_class.h:3672
#5 0x00005645bc3b15b7 in Item::split_sum_func2 (this=0x7f5c88190910, thd=0x7f5c88000d90, ref_pointer_array=..., fields=..., ref=0x0, split_flags=0) at /data/src/10.2/sql/item.cc:2056
#6 0x00005645bc154d83 in JOIN::prepare (this=0x7f5c880864a8, tables_init=0x7f5c880a4ac0, wild_num=0, conds_init=0x0, og_num=0, order_init=0x0, skip_order_by=false, group_init=0x0, having_init=0x0, proc_param_init=0x0, select_lex_arg=0x7f5c8818f778, unit_arg=0x7f5c8818f038) at /data/src/10.2/sql/sql_select.cc:955
#7 0x00005645bc15ec26 in mysql_select (thd=0x7f5c88000d90, tables=0x7f5c880a4ac0, wild_num=0, fields=..., conds=0x0, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=2147749632, result=0x7f5c88086488, unit=0x7f5c8818f038, select_lex=0x7f5c8818f778) at /data/src/10.2/sql/sql_select.cc:3818
#8 0x00005645bc152e3a in handle_select (thd=0x7f5c88000d90, lex=0x7f5c8818ef78, result=0x7f5c88086488, setup_tables_done_option=0) at /data/src/10.2/sql/sql_select.cc:361
#9 0x00005645bc11d4e5 in execute_sqlcom_select (thd=0x7f5c88000d90, all_tables=0x7f5c880a4ac0) at /data/src/10.2/sql/sql_parse.cc:6275
#10 0x00005645bc114059 in mysql_execute_command (thd=0x7f5c88000d90) at /data/src/10.2/sql/sql_parse.cc:3586
#11 0x00005645bc065662 in sp_instr_stmt::exec_core (this=0x7f5c8809a918, thd=0x7f5c88000d90, nextp=0x7f5ce03c963c) at /data/src/10.2/sql/sp_head.cc:3332
#12 0x00005645bc064cc3 in sp_lex_keeper::reset_lex_and_exec_core (this=0x7f5c8809a958, thd=0x7f5c88000d90, nextp=0x7f5ce03c963c, open_tables=false, instr=0x7f5c8809a918) at /data/src/10.2/sql/sp_head.cc:3095
#13 0x00005645bc065307 in sp_instr_stmt::execute (this=0x7f5c8809a918, thd=0x7f5c88000d90, nextp=0x7f5ce03c963c) at /data/src/10.2/sql/sp_head.cc:3248
#14 0x00005645bc0602db in sp_head::execute (this=0x7f5c88034a28, thd=0x7f5c88000d90, merge_da_on_success=true) at /data/src/10.2/sql/sp_head.cc:1326
#15 0x00005645bc0624f9 in sp_head::execute_procedure (this=0x7f5c88034a28, thd=0x7f5c88000d90, args=0x7f5c880056d0) at /data/src/10.2/sql/sp_head.cc:2202
#16 0x00005645bc112401 in do_execute_sp (thd=0x7f5c88000d90, sp=0x7f5c88034a28) at /data/src/10.2/sql/sql_parse.cc:2981
#17 0x00005645bc11adde in mysql_execute_command (thd=0x7f5c88000d90) at /data/src/10.2/sql/sql_parse.cc:5626
#18 0x00005645bc12128d in mysql_parse (thd=0x7f5c88000d90, rawbuf=0x7f5c880126f8 "CALL testsp_doesnot_works()", length=27, parser_state=0x7f5ce03ca5f0, is_com_multi=false, is_next_command=false) at /data/src/10.2/sql/sql_parse.cc:7790
#19 0x00005645bc10f4ca in dispatch_command (command=COM_QUERY, thd=0x7f5c88000d90, packet=0x7f5c88008b51 "CALL testsp_doesnot_works()", packet_length=27, is_com_multi=false, is_next_command=false) at /data/src/10.2/sql/sql_parse.cc:1827
#20 0x00005645bc10dfc5 in do_command (thd=0x7f5c88000d90) at /data/src/10.2/sql/sql_parse.cc:1381
#21 0x00005645bc268a54 in do_handle_one_connection (connect=0x5645beeb9810) at /data/src/10.2/sql/sql_connect.cc:1336
#22 0x00005645bc2687b9 in handle_one_connection (arg=0x5645beeb9810) at /data/src/10.2/sql/sql_connect.cc:1241
#23 0x00005645bca91a26 in pfs_spawn_thread (arg=0x5645bee9cc00) at /data/src/10.2/storage/perfschema/pfs.cc:1869
#24 0x00007f5ce6474609 in start_thread (arg=<optimized out>) at pthread_create.c:477
#25 0x00007f5ce604e293 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
Fails the same way on debug, ASAN and release builds, 10.2-10.6.