Merge patch into master

This commit is contained in:
github-actions[bot] 2024-05-08 06:36:09 +00:00 committed by GitHub
commit b57e4005c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
cabal-version: 3.0 cabal-version: 3.0
name: hasql name: hasql
version: 1.7.0.1 version: 1.7.0.2
category: Hasql, Database, PostgreSQL category: Hasql, Database, PostgreSQL
synopsis: Fast PostgreSQL driver with a flexible mapping API synopsis: Fast PostgreSQL driver with a flexible mapping API
description: description:

View File

@ -87,10 +87,10 @@ run (Pipeline sendQueriesInIO) connection registry integerDatetimes = do
-- --
-- @ -- @
-- insertOrders :: [OrderDetails] -> 'Hasql.Session.Session' [OrderId] -- insertOrders :: [OrderDetails] -> 'Hasql.Session.Session' [OrderId]
-- insertOrders songs = -- insertOrders orders =
-- 'Hasql.Session.pipeline' $ -- 'Hasql.Session.pipeline' $
-- forM songs $ \\song -> -- forM orders $ \\order ->
-- 'Hasql.Pipeline.statement' song Statements.insertOrder -- 'Hasql.Pipeline.statement' order Statements.insertOrder
-- @ -- @
-- --
-- === Combining Queries -- === Combining Queries