I believe since DST has occurred, we have been experiencing a BIZZAR tstamp issue.
When running a query directly from MySQL:
SELECT
ID,
crew,
start_time,
stop_time
FROM rotation_schedule
WHERE start_time BETWEEN '2010-04-22 07:00:00' AND '2010-04-22 19:00:00'
ORDER BY ID
I return:
[quote]“ID”,“crew”,“start_time”,“stop_time”
“223”,“4”,“2010-04-22 07:00:00”,“2010-04-22 18:59:59”
“224”,“3”,“2010-04-22 19:00:00”,“2010-04-23 06:59:59”[/quote]
When ran in FPMI I return:
[quote]“ID”,“crew”,“start_time”,“stop_time”
“223”,“4”,“2010-04-22 08:00:00”,“2010-04-22 19:59:59”
“224”,“3”,“2010-04-22 20:00:00”,“2010-04-23 07:59:59”[/quote]
I have checked the TZ on both client and gateway. Both are Central (GMT -06:00). Both system clocks are the same as well.
Also, on the “Date Range” component, the blue arrow reprenting “NOW” is an hour behind.
But, here is the KICKER, IF, I change my clock on the Client to read an HOUR later than it really is, then the arrow is correct, yet my query from above still results in the same problem.
Any ideas guys?