- Avoid caching the parsing results of large queries to avoid excessive memory
usage (:ticket:`#628`).
- Fix integer overflow in C/binary extension with OID > 2^31 (:ticket:`#630`).
+- Fix loading of intervals with days and months or years (:ticket:`#643`).
- Fix building on Solaris and derivatives (:ticket:`#632`).
- Fix possible lack of critical section guard in async
`~AsyncCursor.executemany()`.
("-30d", "-1 month"),
("60d", "2 month"),
("-90d", "-3 month"),
+ ("186d", "6 mons 6 days"),
+ ("736d", "2 years 6 days"),
],
)
@pytest.mark.parametrize("fmt_out", pq.Format)