packages feed

postgresql-simple-postgresql-types 0.1.0.1 → 0.1.1

raw patch · 3 files changed

+7/−1 lines, 3 files

Files

postgresql-simple-postgresql-types.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: postgresql-simple-postgresql-types-version: 0.1.0.1+version: 0.1.1 category: PostgreSQL, Codecs synopsis: Integration of "postgresql-simple" with "postgresql-types" homepage: https://github.com/nikita-volkov/postgresql-simple-postgresql-types
src/integration-tests/Main.hs view
@@ -62,6 +62,7 @@           withType @Pt.Timestamp [mappingSpec True]           withType @Pt.Timestamptz [mappingSpec True]           withType @Pt.Timetz [mappingSpec True]+          withType @Pt.Tsvector [mappingSpec True]           withType @Pt.Uuid [mappingSpec True]           withType @(Pt.Varbit 5) [mappingSpec True]           withType @(Pt.Varchar 5) [mappingSpec True]@@ -116,6 +117,7 @@           withType @Pt.Timestamp [mappingSpec True]           withType @Pt.Timestamptz [mappingSpec True]           withType @Pt.Timetz [mappingSpec True]+          withType @Pt.Tsvector [mappingSpec True]           withType @Pt.Uuid [mappingSpec True]           withType @(Pt.Varbit 5) [mappingSpec True]           withType @(Pt.Varchar 5) [mappingSpec True]
src/library/Database/PostgreSQL/Simple/PostgresqlTypes.hs view
@@ -184,6 +184,10 @@  deriving via ViaIsScalar Timetz instance ToField Timetz +deriving via ViaIsScalar Tsvector instance FromField Tsvector++deriving via ViaIsScalar Tsvector instance ToField Tsvector+ deriving via ViaIsScalar Uuid instance FromField Uuid  deriving via ViaIsScalar Uuid instance ToField Uuid