| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-06-26 | 827 Bytes | |
| v0.48.0 source code.tar.gz | 2026-06-26 | 719.7 kB | |
| v0.48.0 source code.zip | 2026-06-26 | 939.8 kB | |
| Totals: 3 Items | 1.7 MB | 0 | |
Changed
- PostgreSQL single-column relationship loaders — both the slice relationship query (
<Parent>Slice.<Rel>) and the batch count method (<Parent>Slice.LoadCount<Rel>) — now filter related rows withcol = ANY($1)instead ofcol IN (SELECT unnest($1)), so the query planner can use an index scan on the foreign key instead of aSeq Scan + Hash Semi Join. Composite-key relationships keep the existingIN (SELECT unnest(...))form. (thanks @sandonemaki)
Fixed
- Fixed PostgreSQL generated query parsing for CTEs that use table functions in
FROM(for exampleunnest(...) AS alias), which could incorrectly widen CTE spans and generate malformed query mods such as duplicated outerSELECTprojections.
Full Changelog: https://github.com/stephenafamo/bob/compare/v0.47.0...v0.48.0