BSON has a special field type to indicate a date/time; these are 64-bit
values.However, R has a 'standard' object of class "POSIXct" used to represent
date/time values, such as that returned by Sys.time(). Internally these are
a 32-bit integer number of milliseconds since midnight January 1, 1970. On
January 19, 2038, 32-bit versions of the the Unix time stamp will cease to
work, as it will overflow the largest value that can be held in a signed
32-bit number. At such time, many applications, including R and this driver,
will need to address that issue.