Merge branch '10.2' into 10.3

This commit is contained in:
Oleksandr Byelkin 2019-06-14 07:36:47 +02:00
commit 4a3d51c76c
83 changed files with 2193 additions and 2608 deletions

View file

@ -129,6 +129,13 @@ void Json_writer::add_ll(longlong val)
add_unquoted_str(buf);
}
void Json_writer::add_ull(ulonglong val)
{
char buf[64];
my_snprintf(buf, sizeof(buf), "%llu", val);
add_unquoted_str(buf);
}
/* Add a memory size, printing in Kb, Kb, Gb if necessary */
void Json_writer::add_size(longlong val)