mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Merge branch '10.2' into 10.3
This commit is contained in:
commit
4a3d51c76c
83 changed files with 2193 additions and 2608 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue