mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@ -722,7 +722,7 @@ public:
|
||||
{
|
||||
return m_usec ?
|
||||
my_snprintf(to, nbytes, "%s%llu.%06lu",
|
||||
m_neg ? "-" : "", m_sec, (uint) m_usec) :
|
||||
m_neg ? "-" : "", m_sec, m_usec) :
|
||||
my_snprintf(to, nbytes, "%s%llu", m_neg ? "-" : "", m_sec);
|
||||
}
|
||||
void make_truncated_warning(THD *thd, const char *type_str) const;
|
||||
|
Reference in New Issue
Block a user