Page MenuHomePhabricator

Queries in Hue always return an empty result set
Closed, DeclinedPublic

Description

Running the same query as in https://phabricator.wikimedia.org/T125902#2061710 (which returned 35 rows) I get no results. Here is the query in case it's changed in the link above:

SELECT SUM(view_count) ct
FROM wmf.pageview_hourly
WHERE year = 2016 and (month = 1 OR month = 2)
    AND access_method = 'mobile web'
    AND agent_type = 'user'
    AND project = 'en.wikipedia'
    AND page_title like 'Special:UserProfile%'
GROUP BY CONCAT(LPAD(month, 2, "0"), "-", LPAD(day, 2, "0"));

I also tried running other queries, all of which returned no results. May it have something to do with my account? Reference: T113069#2058186