account for lack of 'mobile' in android ua strings

This commit is contained in:
John Bender 2011-11-14 11:25:22 -08:00
parent ba8030e4f3
commit bfb42ff3f3

View file

@ -19,7 +19,7 @@
FROM stats
WHERE agent LIKE \'Android\'
)
WHERE (agent_full like \'%Mobile%\' or agent_full like \'%mobile%\')
WHERE (agent_full like \'%Mobile%\' or agent_full like \'%mobile%\' or agent_full like '%Android%')
and agent like :agent and point like :data_point
GROUP BY agent, agent_version, pathname, point, time
ORDER BY agent, agent_version, time;