return [];
}
const placeholders = toolCallIds.map(() => '?').join(',');
const rows = await dbAll(
db,
`SELECT turn_id, tool_call_id, file_path, edit_type, original_path, added_lines, removed_lines
FROM file_edits
WHERE tool_call_id IN (${placeholders})
ORDER BY rowid`,
toolCallIds,
);
return rows.map(row => ({
turnId: row.turn_id as string,
toolCallId: row.tool_call_id as string,