1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Fix casting issue for date truncation

Boost::any is used for the value so it needs to be casted to a type
This commit is contained in:
Andrew Hutchings
2016-09-15 19:48:15 +01:00
parent 81ea155b06
commit 1fdb5f567b

View File

@ -1100,7 +1100,7 @@ boost::any
}
else
{
value = 0;
value = (uint32_t) 0;
pushWarning = true;
}
}
@ -1115,7 +1115,7 @@ boost::any
}
else
{
value = 0;
value = (uint64_t) 0;
pushWarning = true;
}
}