Skip to content

Commit

Permalink
Fix compile failures (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
fqaiser94 authored Nov 25, 2023
1 parent a6d98c3 commit 7108b4a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions crates/catalog/rest/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1278,7 +1278,10 @@ mod tests {
uuid!("bf289591-dcc0-4234-ad4f-5c3eed811a29"),
table.metadata().uuid()
);
assert_eq!(1657810967051, table.metadata().last_updated_ms());
assert_eq!(
1657810967051,
table.metadata().last_updated_ms().timestamp_millis()
);
assert_eq!(
vec![&Arc::new(
Schema::builder()
Expand Down Expand Up @@ -1450,7 +1453,10 @@ mod tests {
uuid!("bf289591-dcc0-4234-ad4f-5c3eed811a29"),
table.metadata().uuid()
);
assert_eq!(1657810967051, table.metadata().last_updated_ms());
assert_eq!(
1657810967051,
table.metadata().last_updated_ms().timestamp_millis()
);
assert_eq!(
vec![&Arc::new(
Schema::builder()
Expand Down

0 comments on commit 7108b4a

Please sign in to comment.