1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-17928 Conversion from TIMESTAMP to VARCHAR SP variables does not work well on fractional digits

This commit is contained in:
Alexander Barkov
2018-12-08 16:10:44 +04:00
parent fac997feef
commit a25ce5ab4b
8 changed files with 94 additions and 15 deletions

View File

@ -853,6 +853,9 @@ public:
tv_sec= sec;
tv_usec= usec;
}
explicit Timeval(const timeval &tv)
:timeval(tv)
{ }
};