mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Fix typos in JSON MRR output
This commit is contained in:
parent
7016621596
commit
125001881d
3 changed files with 7 additions and 3 deletions
|
@ -1492,7 +1492,7 @@ EXPLAIN
|
|||
"buffer_type": "flat",
|
||||
"buffer_size": "256Kb",
|
||||
"join_type": "BKA",
|
||||
"mrr_type": "; Rowid-ordered scan"
|
||||
"mrr_type": "Rowid-ordered scan"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1535,7 +1535,7 @@ ANALYZE
|
|||
"buffer_type": "flat",
|
||||
"buffer_size": "256Kb",
|
||||
"join_type": "BKA",
|
||||
"mrr_type": "; Rowid-ordered scan",
|
||||
"mrr_type": "Rowid-ordered scan",
|
||||
"r_filtered": 100
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1809,7 +1809,10 @@ void Explain_table_access::append_tag_name(String *str, enum explain_extra_tag t
|
|||
str->append(STRING_WITH_LEN(" join"));
|
||||
str->append(STRING_WITH_LEN(")"));
|
||||
if (bka_type.mrr_type.length())
|
||||
{
|
||||
str->append(STRING_WITH_LEN("; "));
|
||||
str->append(bka_type.mrr_type);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -2620,7 +2620,8 @@ static void add_mrr_explain_info(String *str, uint mrr_mode, handler *file)
|
|||
sizeof(mrr_str_buf));
|
||||
if (len > 0)
|
||||
{
|
||||
str->append(STRING_WITH_LEN("; "));
|
||||
if (str->length())
|
||||
str->append(STRING_WITH_LEN("; "));
|
||||
str->append(mrr_str_buf, len);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue