mirror of
https://github.com/MariaDB/server.git
synced 2025-07-17 12:02:09 +03:00
Merge branch '10.6' into 10.7
This commit is contained in:
@ -8311,6 +8311,20 @@ bool THD::timestamp_to_TIME(MYSQL_TIME *ltime, my_time_t ts,
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void THD::my_ok_with_recreate_info(const Recreate_info &info,
|
||||
ulong warn_count)
|
||||
{
|
||||
char buf[80];
|
||||
my_snprintf(buf, sizeof(buf),
|
||||
ER_THD(this, ER_INSERT_INFO),
|
||||
(ulong) info.records_processed(),
|
||||
(ulong) info.records_duplicate(),
|
||||
warn_count);
|
||||
my_ok(this, info.records_processed(), 0L, buf);
|
||||
}
|
||||
|
||||
|
||||
THD_list_iterator *THD_list_iterator::iterator()
|
||||
{
|
||||
return &server_threads;
|
||||
|
Reference in New Issue
Block a user