├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE.txt ├── README.md ├── Setup.hs ├── postgresql-transactional.cabal ├── src └── Database │ └── PostgreSQL │ ├── Tagged.hs │ └── Transaction.hs ├── stack.yaml └── tests ├── Database └── PostgreSQL │ └── TransactionSpec.hs └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .stack-work 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /postgresql-transactional.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/postgresql-transactional.cabal -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Tagged.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/src/Database/PostgreSQL/Tagged.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Transaction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/src/Database/PostgreSQL/Transaction.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/stack.yaml -------------------------------------------------------------------------------- /tests/Database/PostgreSQL/TransactionSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/tests/Database/PostgreSQL/TransactionSpec.hs -------------------------------------------------------------------------------- /tests/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmcgilchrist/postgresql-transactional/HEAD/tests/Spec.hs --------------------------------------------------------------------------------