mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-12789 JSON_KEYS returns duplicate keys twice.
Check for duplicating keys added.
This commit is contained in:
@ -2779,6 +2779,41 @@ void Item_func_json_keys::fix_length_and_dec()
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
That function is for Item_func_json_keys::val_str exclusively.
|
||||
It utilizes the fact the resulting string is in specific format:
|
||||
["key1", "key2"...]
|
||||
*/
|
||||
static int check_key_in_list(String *res,
|
||||
const uchar *key, int key_len)
|
||||
{
|
||||
const uchar *c= (const uchar *) res->ptr() + 2; /* beginning '["' */
|
||||
const uchar *end= (const uchar *) res->end() - 1; /* ending '"' */
|
||||
|
||||
while (c < end)
|
||||
{
|
||||
int n_char;
|
||||
for (n_char=0; c[n_char] != '"' && n_char < key_len; n_char++)
|
||||
{
|
||||
if (c[n_char] != key[n_char])
|
||||
break;
|
||||
}
|
||||
if (c[n_char] == '"')
|
||||
{
|
||||
if (n_char == key_len)
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
while (c[n_char] != '"')
|
||||
n_char++;
|
||||
}
|
||||
c+= n_char + 4; /* skip ', "' */
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
String *Item_func_json_keys::val_str(String *str)
|
||||
{
|
||||
json_engine_t je;
|
||||
@ -2835,6 +2870,7 @@ skip_search:
|
||||
while (json_scan_next(&je) == 0 && je.state != JST_OBJ_END)
|
||||
{
|
||||
const uchar *key_start, *key_end;
|
||||
int key_len;
|
||||
|
||||
switch (je.state)
|
||||
{
|
||||
@ -2844,13 +2880,19 @@ skip_search:
|
||||
{
|
||||
key_end= je.s.c_str;
|
||||
} while (json_read_keyname_chr(&je) == 0);
|
||||
if (je.s.error ||
|
||||
(n_keys > 0 && str->append(", ", 2)) ||
|
||||
if (je.s.error)
|
||||
goto err_return;
|
||||
key_len= key_end - key_start;
|
||||
|
||||
if (!check_key_in_list(str, key_start, key_len))
|
||||
{
|
||||
if ((n_keys > 0 && str->append(", ", 2)) ||
|
||||
str->append("\"", 1) ||
|
||||
append_simple(str, key_start, key_end - key_start) ||
|
||||
append_simple(str, key_start, key_len) ||
|
||||
str->append("\"", 1))
|
||||
goto err_return;
|
||||
n_keys++;
|
||||
n_keys++;
|
||||
}
|
||||
break;
|
||||
case JST_OBJ_START:
|
||||
case JST_ARRAY_START:
|
||||
|
Reference in New Issue
Block a user