1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-392 Fix time() for a DATETIME value

This commit is contained in:
Andrew Hutchings
2018-04-30 07:56:47 +01:00
parent 957dc44615
commit aae2810d73

View File

@ -216,7 +216,7 @@ struct Time
{}
Time(signed d, signed h, signed min, signed sec, signed msec) :
msecond(sec), second(sec), minute(min), hour(h), day(d) {}
msecond(msec), second(sec), minute(min), hour(h), day(d) {}
int64_t convertToMySQLint() const;
void reset();