1053 - Server shutdown in progress

select distinct p.products_id, p.products_image, if(length(pd1.products_name), pd1.products_name, pd.products_name) as products_name, if(length(pd1.products_description_short), pd1.products_description_short, pd.products_description_short) as products_description_short, p.products_tax_class_id, p.products_price from products_description pd, products p left join products_description pd1 on pd1.products_id = p.products_id and pd1.language_id='1' and pd1.affiliate_id = '0' left join inventory i on (p.products_id=i.prid) where p.products_status = 1 and pd.language_id = '1' and pd.products_id = p.products_id and pd.affiliate_id = 0 and ((p.stock_level='2' and i.stock_level is null) or i.stock_level='2') order by p.products_date_added desc

[TEP STOP]