Hello guys,
first, let me thank you for putting so much effort into Metabase!
Now, in production I'm using v0.34, we started another instance with Metabase upgraded to v0.42.4 as a test with production config. All questions and dashboards are working except questions where I'm using GROUP BY HOUR. If I switch to DAY on interactive filter, it works.
So I converted question to SQL:
SELECT
trunc("SY_TEVRON"."TIMERRESULTS"."SCRIPTSTARTTIME", 'dd') AS "SCRIPTSTARTTIME",
avg("SY_TEVRON"."TIMERRESULTS"."TEST_DUR") AS "avg"
FROM "SY_TEVRON"."TIMERRESULTS"
WHERE ("SY_TEVRON"."TIMERRESULTS"."SCRIPTNAME" = 'TMWEB-B2B-BlokaceInternet'
AND "SY_TEVRON"."TIMERRESULTS"."TIMERNAME" = 'b2b_zvolitSpravuCisla'
AND "SY_TEVRON"."TIMERRESULTS"."TIMERSTATUS" = 'Pass')
GROUP BY trunc("SY_TEVRON"."TIMERRESULTS"."SCRIPTSTARTTIME", 'dd')
ORDER BY trunc("SY_TEVRON"."TIMERRESULTS"."SCRIPTSTARTTIME", 'dd') ASC
When I change in SQL dd to hh it works perfectly but I would love to make it working as a standard question.
Am I missing something or doing something wrong?
Thank you for help.
T.