postgresql group_by 日期为本地时间

postgresql group_by with date in localtime

我知道 postgresql 中有 date 函数

select date(date_time_field) from .. group by (date(date_time_field)

然而,结果日期似乎是 utc 日期。
我想在本地日期前 group_by。

select date(date_time_field at time zone 'brt')
from ..
group by 1

at time zone