(userTurn int, role string, content []byte)
| 733 | ORDER BY m.last_accessed_at ASC, m.id ASC LIMIT ?`, lastCommitted, extra) |
| 734 | if err != nil { |
| 735 | return err |
| 736 | } |
| 737 | var ids []int64 |
| 738 | for rows.Next() { |
| 739 | var id int64 |
| 740 | if err := rows.Scan(&id); err != nil { |
| 741 | rows.Close() |
| 742 | return err |
| 743 | } |