Skip to content

Commit b8319e2

Browse files
ovrMazterQyou
andauthored
Apply suggestion from @MazterQyou
Co-authored-by: Alex Qyoun-ae <[email protected]>
1 parent 55fa142 commit b8319e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/cubesql/pg-srv/src/values/timestamp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub struct TimestampValue {
2626
impl TimestampValue {
2727
pub fn new(mut unix_nano: i64, tz: Option<String>) -> TimestampValue {
2828
// This is a hack to workaround a mismatch between on-disk and in-memory representations.
29-
// We use millisecond precision on-disk.
29+
// We use microsecond precision on-disk.
3030
unix_nano -= unix_nano % 1000;
3131
TimestampValue { unix_nano, tz }
3232
}

0 commit comments

Comments
 (0)