Skip to content

Commit d37e50c

Browse files
committed
fix long name on view protocol
1 parent 902d05a commit d37e50c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

mysql-test/main/func_json.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1776,8 +1776,8 @@ Warning 4042 Syntax error in JSON path in argument 2 to function 'json_extract'
17761776
#
17771777
# MDEV-39213: json range syntax crash
17781778
#
1779-
SELECT JSON_EXISTS(CONCAT('[', REPEAT('[', 4000), 'Y', REPEAT(']', 4000), ', 1]'), '$[100]');
1780-
JSON_EXISTS(CONCAT('[', REPEAT('[', 4000), 'Y', REPEAT(']', 4000), ', 1]'), '$[100]')
1779+
SELECT JSON_EXISTS(CONCAT('[', REPEAT('[', 4000), 'Y', REPEAT(']', 4000), ', 1]'), '$[100]') as ex;
1780+
ex
17811781
NULL
17821782
#
17831783
# MDEV-35548 UBSAN: runtime error: index -1 out of bounds for type 'json_path_step_t[32]'

mysql-test/main/func_json.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ select null<=>json_extract('1',json_object(null,'{ }',null,null),'{}');
12421242
--echo # MDEV-39213: json range syntax crash
12431243
--echo #
12441244

1245-
SELECT JSON_EXISTS(CONCAT('[', REPEAT('[', 4000), 'Y', REPEAT(']', 4000), ', 1]'), '$[100]');
1245+
SELECT JSON_EXISTS(CONCAT('[', REPEAT('[', 4000), 'Y', REPEAT(']', 4000), ', 1]'), '$[100]') as ex;
12461246

12471247
--echo #
12481248
--echo # MDEV-35548 UBSAN: runtime error: index -1 out of bounds for type 'json_path_step_t[32]'

0 commit comments

Comments
 (0)