Fixed date query for MySQL.

This commit is contained in:
Mike Cao 2022-07-21 21:21:48 -07:00
parent 34bdea8a4f
commit 07d276106e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export function getDateQuery(field, unit, timezone) {
if (timezone) {
const tz = moment.tz(timezone).format('Z');
return `date_format(convert_tz(${field},'+00:00','${tz}', '${MYSQL_DATE_FORMATS[unit]}')`;
return `date_format(convert_tz(${field},'+00:00','${tz}'), '${MYSQL_DATE_FORMATS[unit]}')`;
}
return `${field}`;