File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
service/tests/it/storages/fuse
storages/fuse/fuse/src/operations Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -483,12 +483,10 @@ pub async fn check_data_dir(
483
483
let prefix_block = FUSE_TBL_BLOCK_PREFIX ;
484
484
let prefix_index = FUSE_TBL_XOR_BLOOM_INDEX_PREFIX ;
485
485
let prefix_last_snapshot_hint = FUSE_TBL_LAST_SNAPSHOT_HINT ;
486
- println ! ( "root: {}" , root) ;
487
486
for entry in WalkDir :: new ( root) {
488
487
let entry = entry. unwrap ( ) ;
489
488
if entry. file_type ( ) . is_file ( ) {
490
489
let ( _, entry_path) = entry. path ( ) . to_str ( ) . unwrap ( ) . split_at ( root. len ( ) ) ;
491
- println ! ( "entry: {}" , entry_path) ;
492
490
// trim the leading prefix, e.g. "/db_id/table_id/"
493
491
let path = entry_path. split ( '/' ) . skip ( 3 ) . collect :: < Vec < _ > > ( ) ;
494
492
let path = path[ 0 ] ;
@@ -501,7 +499,6 @@ pub async fn check_data_dir(
501
499
} else if path. starts_with ( prefix_index) {
502
500
i_count += 1 ;
503
501
} else if path. starts_with ( prefix_snapshot_statistics) {
504
- println ! ( "ts file:{}" , entry_path) ;
505
502
ts_count += 1 ;
506
503
} else if path. starts_with ( prefix_last_snapshot_hint) && check_last_snapshot. is_some ( ) {
507
504
let content = fixture
Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ impl FuseTable {
92
92
table_statistics. format_version ( ) ,
93
93
) ?;
94
94
95
- println ! ( "ts location: {:?}" , table_statistics) ;
96
95
// 4. Save table statistics
97
96
let mut new_snapshot = TableSnapshot :: from_previous ( & snapshot) ;
98
97
new_snapshot. table_statistics_location = Some ( table_statistics_location) ;
You can’t perform that action at this time.
0 commit comments