You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +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:
@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user