@@ -32,7 +32,7 @@ use risingwave_storage::store::{
32
32
use risingwave_storage:: StateStore ;
33
33
34
34
use crate :: local_state_store_test_utils:: LocalStateStoreTestExt ;
35
- use crate :: test_utils:: { gen_key_from_bytes, with_hummock_storage_v2 , TestIngestBatch } ;
35
+ use crate :: test_utils:: { gen_key_from_bytes, with_hummock_storage , TestIngestBatch } ;
36
36
37
37
macro_rules! assert_count_range_scan {
38
38
(
@@ -402,36 +402,36 @@ async fn test_snapshot_range_scan_inner(
402
402
403
403
#[ tokio:: test]
404
404
async fn test_snapshot_v2 ( ) {
405
- let ( storage, meta_client) = with_hummock_storage_v2 ( Default :: default ( ) ) . await ;
405
+ let ( storage, meta_client) = with_hummock_storage ( Default :: default ( ) ) . await ;
406
406
test_snapshot_inner ( storage, meta_client, false , false ) . await ;
407
407
}
408
408
409
409
#[ tokio:: test]
410
410
async fn test_snapshot_with_sync_v2 ( ) {
411
- let ( storage, meta_client) = with_hummock_storage_v2 ( Default :: default ( ) ) . await ;
411
+ let ( storage, meta_client) = with_hummock_storage ( Default :: default ( ) ) . await ;
412
412
test_snapshot_inner ( storage, meta_client, true , false ) . await ;
413
413
}
414
414
415
415
#[ tokio:: test]
416
416
async fn test_snapshot_with_commit_v2 ( ) {
417
- let ( storage, meta_client) = with_hummock_storage_v2 ( Default :: default ( ) ) . await ;
417
+ let ( storage, meta_client) = with_hummock_storage ( Default :: default ( ) ) . await ;
418
418
test_snapshot_inner ( storage, meta_client, true , true ) . await ;
419
419
}
420
420
421
421
#[ tokio:: test]
422
422
async fn test_snapshot_range_scan_v2 ( ) {
423
- let ( storage, meta_client) = with_hummock_storage_v2 ( Default :: default ( ) ) . await ;
423
+ let ( storage, meta_client) = with_hummock_storage ( Default :: default ( ) ) . await ;
424
424
test_snapshot_range_scan_inner ( storage, meta_client, false , false ) . await ;
425
425
}
426
426
427
427
#[ tokio:: test]
428
428
async fn test_snapshot_range_scan_with_sync_v2 ( ) {
429
- let ( storage, meta_client) = with_hummock_storage_v2 ( Default :: default ( ) ) . await ;
429
+ let ( storage, meta_client) = with_hummock_storage ( Default :: default ( ) ) . await ;
430
430
test_snapshot_range_scan_inner ( storage, meta_client, true , false ) . await ;
431
431
}
432
432
433
433
#[ tokio:: test]
434
434
async fn test_snapshot_range_scan_with_commit_v2 ( ) {
435
- let ( storage, meta_client) = with_hummock_storage_v2 ( Default :: default ( ) ) . await ;
435
+ let ( storage, meta_client) = with_hummock_storage ( Default :: default ( ) ) . await ;
436
436
test_snapshot_range_scan_inner ( storage, meta_client, true , true ) . await ;
437
437
}
0 commit comments