Removed
- Remove
Table Expr b
constraint frommaterialize
. (#334)
Added
-
Support GHC-9.10. (#340)
-
Support hasql-1.8 (#345)
-
Add
aggregateJustTable
,aggregateJustTable
aggregator functions. These provide another way to do aggregation ofMaybeTable
s than the existingaggregateMaybeTable
function. (#333) -
Add
aggregateLeftTable
,aggregateLeftTable1
,aggregateRightTable
andaggregateRightTable1
aggregator functions. These provide another way to do aggregation ofEitherTable
s than the existingaggregateEitherTable
function. (#333) -
Add
aggregateThisTable
,aggregateThisTable1
,aggregateThatTable
,aggregateThatTable1
,aggregateThoseTable
,aggregateThoseTable1
,aggregateHereTable
,aggregateHereTable1
,aggregateThereTable
andaggregateThereTable1
aggregation functions. These provide another way to do aggregation ofTheseTable
s than the existingaggregateTheseTable
function. (#333) -
Add
rawFunction
,rawBinaryOperator
,rawAggregateFunction
,unsafeCoerceExpr
,unsafePrimExpr
,unsafeSubscript
,unsafeSubscripts
— these give more options for generating SQL expressions that Rel8 does not support natively. (#331) -
Expose
unsafeUnnullify
andunsafeUnnullifyTable
fromRel8
. (#343) -
Expose
listOf
andnonEmptyOf
. (#330) -
Add
NOINLINE
pragmas toGeneric
derived default methods ofRel8able
. This should speed up
compilation times. If users wish for these methods to beINLINE
d, they can override with a
pragma in their own code. (#346)