| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-13 | 1.0 kB | |
| v0.11.1.0 source code.tar.gz | 2026-05-13 | 4.2 MB | |
| v0.11.1.0 source code.zip | 2026-05-13 | 4.4 MB | |
| Totals: 3 Items | 8.6 MB | 0 | |
New features
- Added a cross-backend abstraction for the
COPYstatement inDatabase.Beam.Backend.SQL.BeamExtensions: - file-mode
COPY ... TO 'file'/COPY ... FROM 'file'. DefinesMonadBeamCopyTo/MonadBeamCopyFrom, and the user-facingcopyTableTo/copySelectTo/copyTableFrombuilders. - streaming
COPY ... TO STDOUT/COPY ... FROM STDIN. Mirrors the file-mode API:MonadBeamCopyToStream/MonadBeamCopyFromStream, and thecopyTableToStream/copySelectToStream/copyTableFromStreambuilders.
Bug fixes
- Fixed an issue where a window function applied over the result of
nub_(or the Postgres-specificpgNubBy_) would emitDISTINCTand the window expression in the sameSELECT, causing the window to evaluate against the pre-deduplicated rows. The inner select is now materialised as a subquery whenever it carriesDISTINCT,GROUP BY, orHAVING(#756).
Dependencies
- Removed dependency on
ghc-prim.