VG
VG
```[tasklist] ### Tasks - [ ] https://github.com/getdozer/dozer/issues/2192 - [ ] https://github.com/getdozer/dozer/issues/1989 - [ ] https://github.com/getdozer/dozer/issues/1980 - [ ] https://github.com/getdozer/dozer/issues/1898 - [ ] https://github.com/getdozer/dozer/issues/1521 ```
https://github.com/getdozer/dozer/blob/main/dozer-types/src/models/connection.rs#L94 `PostgresConfig` seems to take each field optionally. It should rather be two variations. Either you specify a URL or all mandatory fields specified.
### Reference SQL ``` select name, avg(end_time - start_time)/1000.0 as duration, extract(minute from start_time) as minute into minute_spans from spans group by name, extract(minute from start_time); select name, avg(end_time-start_time)/1000.0 as...
``` Failed to insert record in Cache: "events", Error: Query(InsertValue(BadValSize)). Usually this happens if primary key is wrongly specified ``` Right now if string is long, `dozer` panics. - One...