You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DATETIME_DIFF function returns incorrect results for queries where the difference between the input timestamps is greater than a multiple of 24 hours but does not cross a day boundary. For example, the following query should return 0, but it currently returns 1:
SELECT DATETIME_DIFF(DATETIME "2024-02-01 16:00:00", DATETIME "2024-02-01 15:30:00", DAY) as diff_day
The text was updated successfully, but these errors were encountered:
The
DATETIME_DIFF
function returns incorrect results for queries where the difference between the input timestamps is greater than a multiple of 24 hours but does not cross a day boundary. For example, the following query should return 0, but it currently returns 1:The text was updated successfully, but these errors were encountered: