Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <i@bugenzhao.com>
  • Loading branch information
BugenZhao committed Dec 4, 2023
1 parent 25a7cb9 commit f5efe3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/src/array/proto_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ fn read_timestamptz(cursor: &mut Cursor<&[u8]>) -> ArrayResult<Timestamptz> {
.read_i64::<BigEndian>()
.context("failed to read i64 from Timestamptz buffer")?;

Ok(Timestamptz::from_protobuf(micros)?)
Timestamptz::from_protobuf(micros)
}

fn read_interval(cursor: &mut Cursor<&[u8]>) -> ArrayResult<Interval> {
Expand Down

0 comments on commit f5efe3f

Please sign in to comment.