[PrestaShopDatabaseException]

User 'motobelfqtmtbpre' has exceeded the 'max_questions' resource (current value: 40000)

SELECT m.*, ml.`description`
			FROM `ps_manufacturer_group_shop` mgs
			LEFT JOIN `ps_manufacturer` m ON (m.id_manufacturer = mgs.id_manufacturer)
			LEFT JOIN `ps_manufacturer_lang` ml ON (
				m.`id_manufacturer` = ml.`id_manufacturer`
				AND ml.`id_lang` = 4
			)
			WHERE mgs.id_group_shop=1 AND m.`active` = 1
			ORDER BY m.`name` ASC

at line 604 in file classes/db/Db.php

598. 		if ($webservice_call && $errno)
599. 			WebserviceRequest::getInstance()->setError(500, '[SQL Error] '.$this->getMsgError().'. Query was : '.$sql, 97);
600. 		else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
601. 		{
602. 			if ($sql)
603. 				throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
604. 			throw new PrestaShopDatabaseException($this->getMsgError());
605. 		}
606. 	}
607. 
608. 	/**