mirror of
https://github.com/nikita-volkov/hasql.git
synced 2024-11-22 10:05:27 +03:00
28 lines
673 B
Haskell
28 lines
673 B
Haskell
module Hasql.Commands
|
|
( Commands,
|
|
asBytes,
|
|
setEncodersToUTF8,
|
|
setMinClientMessagesToWarning,
|
|
)
|
|
where
|
|
|
|
import Data.ByteString.Builder qualified as BB
|
|
import Data.ByteString.Lazy qualified as BL
|
|
import Hasql.Prelude
|
|
|
|
newtype Commands
|
|
= Commands (DList BB.Builder)
|
|
deriving (Semigroup, Monoid)
|
|
|
|
asBytes :: Commands -> ByteString
|
|
asBytes (Commands list) =
|
|
BL.toStrict $ BB.toLazyByteString $ foldMap (<> BB.char7 ';') $ list
|
|
|
|
setEncodersToUTF8 :: Commands
|
|
setEncodersToUTF8 =
|
|
Commands (pure "SET client_encoding = 'UTF8'")
|
|
|
|
setMinClientMessagesToWarning :: Commands
|
|
setMinClientMessagesToWarning =
|
|
Commands (pure "SET client_min_messages TO WARNING")
|