Skip to content

Commit 7875643

Browse files
committed
remove debug code
1 parent 8c1a25f commit 7875643

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/query/service/tests/it/storages/fuse/table_test_fixture.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -483,12 +483,10 @@ pub async fn check_data_dir(
483483
let prefix_block = FUSE_TBL_BLOCK_PREFIX;
484484
let prefix_index = FUSE_TBL_XOR_BLOOM_INDEX_PREFIX;
485485
let prefix_last_snapshot_hint = FUSE_TBL_LAST_SNAPSHOT_HINT;
486-
println!("root: {}", root);
487486
for entry in WalkDir::new(root) {
488487
let entry = entry.unwrap();
489488
if entry.file_type().is_file() {
490489
let (_, entry_path) = entry.path().to_str().unwrap().split_at(root.len());
491-
println!("entry: {}", entry_path);
492490
// trim the leading prefix, e.g. "/db_id/table_id/"
493491
let path = entry_path.split('/').skip(3).collect::<Vec<_>>();
494492
let path = path[0];
@@ -501,7 +499,6 @@ pub async fn check_data_dir(
501499
} else if path.starts_with(prefix_index) {
502500
i_count += 1;
503501
} else if path.starts_with(prefix_snapshot_statistics) {
504-
println!("ts file:{}", entry_path);
505502
ts_count += 1;
506503
} else if path.starts_with(prefix_last_snapshot_hint) && check_last_snapshot.is_some() {
507504
let content = fixture

src/query/storages/fuse/fuse/src/operations/statistic.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ impl FuseTable {
9292
table_statistics.format_version(),
9393
)?;
9494

95-
println!("ts location: {:?}", table_statistics);
9695
// 4. Save table statistics
9796
let mut new_snapshot = TableSnapshot::from_previous(&snapshot);
9897
new_snapshot.table_statistics_location = Some(table_statistics_location);

0 commit comments

Comments
 (0)