Tables with datetime columns designated as Nullable() prompt error upon appending
zylsun opened this issue · 1 comments
zylsun commented
This bug is previously mentioned here: #75 (comment). I raise it again in case of omission.
I made the following changes in my personal repo for more than 4 months, and everything is fine since then. I am not familiar with the github or the automatic testing process so I have to leave the formal fix to you.
// line#366
// the master branch now
return vecToScalar<ColumnDateTime, const std::time_t>(v);
// what I changed
return vecToScalar<ColumnDateTime, const std::time_t>(v, nullCol);
Wish to see it fixed soon.