@@ -2505,6 +2505,7 @@ impl Database {
25052505 }
25062506
25072507 /// Get full failure pattern data (with all fields) by signature.
2508+ #[ allow( clippy:: type_complexity) ]
25082509 pub fn get_failure_pattern_by_signature (
25092510 & self , conv_id : i64 , signature : & str ,
25102511 ) -> anyhow:: Result < Option < ( String , String , Vec < String > , String ) > > {
@@ -2722,6 +2723,7 @@ impl Database {
27222723 }
27232724
27242725 /// Query decision records for a conversation (most recent first).
2726+ #[ allow( clippy:: type_complexity) ]
27252727 pub fn query_decision_records ( & self , conv_id : i64 , limit : usize ) -> anyhow:: Result < Vec < ( i64 , String , f64 , Option < bool > , Option < String > , u64 , Option < u64 > , String ) > > {
27262728 let conn = self . read_conn ( ) ;
27272729 let mut stmt = conn. prepare (
@@ -2832,6 +2834,7 @@ impl Database {
28322834 /// Read all execution events for a replay session (by replay_session_id).
28332835 /// Returns (id, execution_id, event_kind, event_payload, seq_no, created_at, epoch_ms)
28342836 /// ordered by insertion order (id ascending) for deterministic replay.
2837+ #[ allow( clippy:: type_complexity) ]
28352838 pub fn get_execution_events_by_session (
28362839 & self , session_id : & str ,
28372840 ) -> anyhow:: Result < Vec < ( i64 , Option < i64 > , String , String , i64 , String , i64 ) > > {
0 commit comments