Skip to content

Commit 90d2f04

Browse files
committed
chore: fix
1 parent c267596 commit 90d2f04

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
@@ -184,7 +184,7 @@ impl FromProtocolValue for TimestampValue {
184184
Ok(TimestampValue::new(unix_nano, None))
185185
}
186186

187-
// https://github.com/postgres/postgres/blob/REL_14_4/src/backend/utils/adt/timestamp.c#234
187+
// https://github.com/postgres/postgres/blob/REL_14_4/src/backend/utils/adt/timestamp.c#L234
188188
fn from_binary(raw: &[u8]) -> Result<Self, ProtocolError> {
189189
if raw.len() != 8 {
190190
return Err(ProtocolError::ErrorResponse {

0 commit comments

Comments
 (0)