eloquent 查询和相同的关联 SQL 查询(使用 toSql() 方法获得)与 Laravel 之间的不同结果

Different result beween eloquent query and the same associated SQL query (got with toSql() method ) with Laravel

我在 Laravel Eloquent:

中有这个查询
$measures = Measure::groupBy('time')
        ->selectRaw('time, sum("delta") as sum_delta, sum("redistributed") as sum_redistr') 
        ->where('operation_id', 'ACC0000001') 
        ->where('time', '>', '2020-05-09 00:00') 
        ->where('time', '<', '2020-05-10 00:00') 
        ->where('source', 'source1') 
        ->where('conso_prod', 'Conso')
        ->get()

当我使用 toSql() 函数进行调试,然后将其粘贴到 pgAdmin 中时,我得到了正确的结果。

select time, sum("delta") as sum_delta, sum("redistributed") as sum_redistr from "measures" 
where "operation_id" = 'ACC0000001'
and "time" > '2020-05-09' and "time" < '2020-05-10' and "source" = 'source1' and "conso_prod" = 'Conso' group by "time"

我每 30 米就有一个结果是正确的。

但是当我使用 eloquent 时,我有相同数量的行,但是所有 time 字段都是相同的:

"2020-05-09 00:00"

而不是递增。

我不明白为什么?我使用带有 TimescaleDB 扩展的 PostgreSQL。

在我的模型中,我将时间转换为 date 而不是 datetime

protected $casts = [
    'time' => 'date'
];

我改成:

protected $casts = [
    'time' => 'datetime'
];

它奏效了。

如果有人像我一样失败了,我就放在那里!无论如何感谢您的帮助