The CQL time value has the following specification:
6.16 time
An 8 byte two's complement long representing nanoseconds since midnight.
Valid values are in the range 0 to 86399999999999
Unfortunately, Scylla does not validate this range when a driver tries to insert a serialized time value.
Moreover, this driver does not validate it before sending either. On the other hand, we validate values received from Scylla and return an error during deserialization if it is out of range. Therefore, it is possible to use the driver to write a value which will cause an error when read back from the DB.
This is exactly the opposite to the robustness principle: we should not allow to send values that are out of range, and we should accept values that are out of range from DB.
Refs: scylladb/scylladb#14667