diff --git a/src/api/identities.rs b/src/api/identities.rs index 7c094ff..d6dcbc8 100644 --- a/src/api/identities.rs +++ b/src/api/identities.rs @@ -328,7 +328,7 @@ async fn list_face_candidates( let rows = if let Some(file_uuid) = &query.file_uuid { let sql = format!( - "SELECT id, face_id, file_uuid, frame_number, confidence, + "SELECT id, face_id, file_uuid, frame_number::int, confidence::float4, jsonb_build_object('x', x, 'y', y, 'width', width, 'height', height) as bbox, NULL::jsonb as attributes FROM {} @@ -366,7 +366,7 @@ async fn list_face_candidates( } } else { let sql = format!( - "SELECT id, face_id, file_uuid, frame_number, confidence, + "SELECT id, face_id, file_uuid, frame_number::int, confidence::float4, jsonb_build_object('x', x, 'y', y, 'width', width, 'height', height) as bbox, NULL::jsonb as attributes FROM {} diff --git a/src/api/trace_agent_api.rs b/src/api/trace_agent_api.rs index 9c010e5..1449b73 100644 --- a/src/api/trace_agent_api.rs +++ b/src/api/trace_agent_api.rs @@ -89,10 +89,10 @@ async fn list_traces_sorted( let query = format!( "SELECT tt.*, fd.id AS sample_face_id FROM ( - SELECT trace_id, + SELECT trace_id::int AS trace_id, COUNT(*) AS face_count, - MIN(frame_number) AS start_frame, - MAX(frame_number) AS end_frame, + MIN(frame_number)::int AS start_frame, + MAX(frame_number)::int AS end_frame, (MAX(frame_number) - MIN(frame_number))::float8 AS duration_sec, AVG(confidence)::float8 AS avg_confidence FROM {} @@ -248,7 +248,7 @@ async fn list_trace_faces( Option, f32, )> = sqlx::query_as( - &format!("SELECT id, frame_number, x, y, width, height, confidence \ + &format!("SELECT id, frame_number::int, x, y, width, height, confidence::float4 \ FROM {} WHERE file_uuid = $1 AND trace_id = $2 \ ORDER BY frame_number ASC LIMIT $3 OFFSET $4", crate::core::db::schema::table_name("face_detections"))