Got error 122 from storage engine SQL=select i.*,s.domain from images as i
left join server as s on s.server_id=i.server_id
left join users as u on u.id=i.uid
left join groups as g on u.gid=g.id
where
i.deleted=0
and i.private=0
and
((u.bandwidth<=g.bandwidth and i.uid!=0)
or
(i.bandwidth<=10737418240000 and i.uid=0)
)
and
(
i.width>150
or
i.height>150
or
(i.width=0 and i.height=0)
)
order by rand() DESC
limit 0,30