Database error: Error writing file '/tmp/MYQu3Yqk' (Errcode: 28 - No space left on device)
Query:
SELECT  SQL_CALC_FOUND_ROWS `S`.`id`, `S`.`parent`, `S`.`code`,
 `N`.`creation_date`, `N`.`anounce`, `N`.`section_anounce`, `N`.`no_content`,
 COUNT(DISTINCT(C.id)) AS `count_comments` 

 FROM `news` AS `N`
INNER JOIN `structure` AS `S` 
	ON N.id = S.id
LEFT JOIN `comment` AS `C` 
	ON C.entity = S.id
WHERE `S`.`visibility` = '0' AND `S`.`parent` = '377'
GROUP BY `S`.`id`
ORDER BY `N`.`creation_date` DESC
LIMIT 0, 40