优化: 代码质量收尾(搜索索引补全+编译警告清理+i18n核验+String替newtype)

This commit is contained in:
2026-07-01 12:11:35 +08:00
parent 0338210ba2
commit 6771d396f0
15 changed files with 242 additions and 36 deletions

View File

@@ -75,7 +75,7 @@ impl PlanExecutor {
);
// 层内并行JoinSet 收集
let mut join_set: tokio::task::JoinSet<SubTaskResult> = tokio::task::JoinSet::new();
let _join_set: tokio::task::JoinSet<SubTaskResult> = tokio::task::JoinSet::new();
let summary_clone = parent_summary.clone();
for task in layer {

View File

@@ -4,7 +4,7 @@
use std::sync::Arc;
use rusqlite::{params, OptionalExtension, Row};
use rusqlite::{params, Row};
use tokio::sync::Mutex;
use crate::db::Database;