File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
service/tests/it/storages/fuse/operations
storages/fuse/fuse/src/operations Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ async fn test_fuse_purge_normal_case() -> Result<()> {
59
59
"do_gc: there should be 1 snapshot, 0 segment/block" ,
60
60
expected_num_of_snapshot,
61
61
0 , // 0 snapshot statistic
62
- 1 , // 0 segments
63
- 1 , // 0 blocks
64
- 1 , // 0 index
62
+ 1 , // 1 segments
63
+ 1 , // 1 blocks
64
+ 1 , // 1 index
65
65
Some ( ( ) ) ,
66
66
None ,
67
67
)
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ async fn test_fuse_snapshot_truncate_in_drop_all_stmt() -> Result<()> {
50
50
let qry = format ! ( "drop table {}.{} all" , db, tbl) ;
51
51
execute_command ( ctx. clone ( ) , qry. as_str ( ) ) . await ?;
52
52
53
- // TODO
54
53
check_data_dir (
55
54
& fixture,
56
55
"drop table: there should be 1 snapshot, 0 segment/block" ,
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ impl FuseTable {
41
41
Default :: default ( ) ,
42
42
vec ! [ ] ,
43
43
self . cluster_key_meta . clone ( ) ,
44
- // TODO table statistics should be reset?
45
44
prev_snapshot. table_statistics_location . clone ( ) ,
46
45
) ;
47
46
let loc = self . meta_location_generator ( ) ;
You can’t perform that action at this time.
0 commit comments