Query failed:
SELECT 
                    

                    e.id,
                    e.title,
                    e.timestamp,
                    e.comments,
                    e.exflag,
                    e.authorid,
                    e.trackbacks,
                    e.isdraft,
                    e.allow_comments,
                    e.last_modified,

                    a.realname AS author,
                    a.username AS loginname,
                    a.email
                     , e.body, e.extended
                     
                FROM
                    csg_entries AS e
                    LEFT JOIN csg_authors a
                        ON e.authorid = a.authorid
                    LEFT JOIN csg_entrycat ec
                        ON e.id = ec.entryid
                    LEFT JOIN csg_category c
                        ON ec.categoryid = c.categoryid
                    
                    WHERE isdraft = 'false' AND (( (c.category_left  BETWEEN 13 AND 14))) AND e.timestamp <= 1715212500
                     GROUP BY e.id
                     
                     ORDER BY timestamp DESC
                      LIMIT 25
/ Incorrect key file for table '/tmp/#sql_a68_0.MYI'; try to repair it