-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathHStoreV2.hs
More file actions
36 lines (34 loc) · 1.2 KB
/
HStoreV2.hs
File metadata and controls
36 lines (34 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
------------------------------------------------------------------------------
-- |
-- Module: Database.PostgreSQL.Simple.HStore
-- Copyright: (c) 2013 Leon P Smith
-- License: BSD3
-- Maintainer: Leon P Smith <leon@melding-monads.com>
-- Stability: experimental
--
-- Parsers and printers for hstore, a extended type bundled with
-- PostgreSQL providing finite maps from text strings to text strings.
-- See <https://www.postgresql.org/docs/9.5/static/hstore.html> for more
-- information.
--
-- Note that in order to use this type, a database superuser must
-- install it by running a sql script in the share directory. This
-- can be done on PostgreSQL 9.1 and later with the command
-- @CREATE EXTENSION hstore@. See
-- <https://www.postgresql.org/docs/9.5/static/contrib.html> for more
-- information.
--
------------------------------------------------------------------------------
module Database.PostgreSQL.Simple.HStoreV2
( HStoreList(..)
, HStoreMap(..)
, ToHStore(..)
, HStoreBuilder
, toBuilder
, toLazyByteString
, hstore
, parseHStoreList
, ToHStoreText(..)
, HStoreText
) where
import Database.PostgreSQL.Simple.HStoreV2.Implementation