We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55fa142 commit b8319e2Copy full SHA for b8319e2
rust/cubesql/pg-srv/src/values/timestamp.rs
@@ -26,7 +26,7 @@ pub struct TimestampValue {
26
impl TimestampValue {
27
pub fn new(mut unix_nano: i64, tz: Option<String>) -> TimestampValue {
28
// This is a hack to workaround a mismatch between on-disk and in-memory representations.
29
- // We use millisecond precision on-disk.
+ // We use microsecond precision on-disk.
30
unix_nano -= unix_nano % 1000;
31
TimestampValue { unix_nano, tz }
32
}
0 commit comments