From 025c355c7d7d330285e801b7c2b76ca8e9608ff3 Mon Sep 17 00:00:00 2001 From: oudecheng <13802883547@139.com> Date: Tue, 2 Jun 2026 17:27:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=9C=A8=E6=B6=88=E6=81=AF=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E4=B8=AD=E6=B7=BB=E5=8A=A0=E5=B7=A5=E5=85=B7=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E6=97=B6=E9=95=BF=E5=AD=97=E6=AE=B5=EF=BC=8C=E5=A2=9E?= =?UTF-8?q?=E5=BC=BA=E6=B6=88=E6=81=AF=E8=AE=B0=E5=BD=95=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/storage/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/mod.rs b/src/storage/mod.rs index f3cd57c..95f2a96 100644 --- a/src/storage/mod.rs +++ b/src/storage/mod.rs @@ -1416,7 +1416,7 @@ impl SessionStore { let conn = self.conn.lock().expect("session db mutex poisoned"); let mut stmt = conn.prepare( " - SELECT id, role, content, system_context, reasoning_content, media_refs_json, created_at, tool_call_id, tool_name, tool_calls_json + SELECT id, role, content, system_context, reasoning_content, media_refs_json, created_at, tool_call_id, tool_name, tool_calls_json, tool_duration_ms FROM messages WHERE topic_id = ?1 ORDER BY seq ASC