1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

cleanup: rename Protocol::store() to Protocol::store_datetime()

to match the naming pattern of all other Protocol::store_xxx() methods
This commit is contained in:
Sergei Golubchik
2020-09-28 10:51:18 +02:00
parent 59b51e6aa7
commit abc3889f1c
5 changed files with 14 additions and 14 deletions

View File

@ -9840,7 +9840,7 @@ static bool show_create_trigger_impl(THD *thd, Trigger *trigger)
thd->variables.time_zone->gmt_sec_to_TIME(&timestamp,
(my_time_t)(trigger->create_time/100));
timestamp.second_part= (trigger->create_time % 100) * 10000;
p->store(&timestamp, 2);
p->store_datetime(&timestamp, 2);
}
else
p->store_null();