Were there any changes to NOW() in 7.2? I see this in HISTORY:
now() returns time with millisecond precision (Thomas)
I have a query like this:
SELECT tour_dates.date, WHERE date_of_show >= NOW() ORDER BY date_of_show;
On 7.1.3, this query would include the current day as well as all dates in
the future. Since moving to 7.2, it only includes dates in the future...
I am using JDBC to access the data, if that makes any difference...
Hunter