mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge remote-tracking branch 'origin/10.3' into 10.4
This commit is contained in:
@ -825,6 +825,11 @@ static int skip_colon(json_engine_t *j)
|
||||
static int skip_key(json_engine_t *j)
|
||||
{
|
||||
int t_next, c_len;
|
||||
|
||||
if (json_instr_chr_map[j->s.c_next] == S_BKSL &&
|
||||
json_handle_esc(&j->s))
|
||||
return 1;
|
||||
|
||||
while (json_read_keyname_chr(j) == 0) {}
|
||||
|
||||
if (j->s.error)
|
||||
|
Reference in New Issue
Block a user