File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -274,8 +274,8 @@ defmodule TeslaMate.Log do
274274 } ,
275275 windows: [
276276 w: [
277- order_by:
278- fragment ( "? RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING" , p . date )
277+ order_by: p . date ,
278+ frame: fragment ( "RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING" )
279279 ]
280280 ] ,
281281 where: p . drive_id == ^ id ,
@@ -291,8 +291,8 @@ defmodule TeslaMate.Log do
291291 } ,
292292 windows: [
293293 w: [
294- order_by:
295- fragment ( "? RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING" , p . date )
294+ order_by: p . date ,
295+ frame: fragment ( "RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING" )
296296 ]
297297 ] ,
298298 where:
@@ -480,8 +480,8 @@ defmodule TeslaMate.Log do
480480 } ,
481481 windows: [
482482 w: [
483- order_by:
484- fragment ( "? RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING" , c . date )
483+ order_by: c . date ,
484+ frame: fragment ( "RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING" )
485485 ]
486486 ] ,
487487 where: [ charging_process_id: ^ charging_process . id ] ,
You can’t perform that action at this time.
0 commit comments