Database query failed: Disk full (/tmp/#sql_3df_0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")

Last SQL query: SELECT g.id AS game_id, g.official, gp.team_id, g.phaze_id, p.name AS phase_name, p.type AS phase_type, g.comp_id as comp_id, cmp.name AS comp_name, s.name AS sport_name, t.name, t.image, g.name AS gname, g.group, gp.score, g.type AS game_type, loc.name as location, g.time, g.status, g.period_id, t.is_guest, g.davis, g.submatch, g.tv, loc.zone, DATE_SUB(g.time, INTERVAL loc.zone HOUR) as gmtTime FROM games AS g INNER JOIN game_participants AS gp ON gp.game_id = g.id INNER JOIN teams AS t ON gp.team_id = t.id INNER JOIN clubs AS c ON t.club_id = c.id INNER JOIN competitions AS cmp ON g.comp_id = cmp.id INNER JOIN phazes AS p ON p.id = g.phaze_id INNER JOIN sports AS s ON s.id = cmp.sport_id LEFT JOIN location AS loc ON loc.id = g.location WHERE g.type!='DAVIS' and DATE(g.time) = '2021-01-08' AND cmp.season_id = 2 AND cmp.sport_id = 21 ORDER BY gmtTime ASC, location, g.group DESC, g.id, gp.id