Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
wenym1 committed Jun 5, 2024
1 parent 7c97d95 commit b717e7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/meta/src/hummock/manager/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2295,11 +2295,11 @@ async fn test_unregister_moved_table() {
);

hummock_manager
.register_table_ids(&[(100, 2)])
.register_table_ids_for_test(&[(100, 2)])
.await
.unwrap();
hummock_manager
.register_table_ids(&[(101, 2)])
.register_table_ids_for_test(&[(101, 2)])
.await
.unwrap();
let sst_1 = ExtendedSstableInfo {
Expand Down
3 changes: 1 addition & 2 deletions src/storage/hummock_sdk/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ use std::collections::{HashMap, HashSet};
use std::mem::{replace, size_of};
use std::sync::Arc;

use itertools::Itertools;
use prost::Message;
use risingwave_common::catalog::TableId;
use risingwave_pb::hummock::group_delta::DeltaType;
Expand All @@ -27,7 +26,7 @@ use risingwave_pb::hummock::{
HummockVersion as PbHummockVersion, HummockVersionDelta as PbHummockVersionDelta, SstableInfo,
StateTableInfo as PbStateTableInfo, StateTableInfo, StateTableInfoDelta,
};
use tracing::{info, warn};
use tracing::warn;

use crate::change_log::TableChangeLog;
use crate::table_watermark::TableWatermarks;
Expand Down

0 comments on commit b717e7c

Please sign in to comment.