mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2025-01-06 04:16:21 +03:00
relational-query: add deprecated ListProjection type as type synonym.
This commit is contained in:
parent
8befc0d911
commit
c66cc46575
@ -17,7 +17,7 @@
|
||||
module Database.Relational.Compat
|
||||
{-# DEPRECATED "backward compatibility definitions relational-query <= 0.9.*" #-} (
|
||||
-- * deprecated types
|
||||
Projection,
|
||||
Projection, ListProjection,
|
||||
|
||||
-- * deprecated classes
|
||||
ProductConstructor (..),
|
||||
@ -46,6 +46,10 @@ import qualified Database.Relational.Projectable as Projectable
|
||||
-- | deprecated 'Projection' type replaced by 'Record' type.
|
||||
type Projection = Record
|
||||
|
||||
{-# DEPRECATED ListProjection "Replaced by RecordList type" #-}
|
||||
-- | deprecated 'Projection' type replaced by 'Record' type.
|
||||
type ListProjection = RecordList
|
||||
|
||||
{-# DEPRECATED ProjectableFunctor "use ProductIsoFunctor in Data.Functor.ProductIsomorphic instead of this. " #-}
|
||||
-- | deprecated 'ProjectableFunctor' class replaced by 'ProductIsoFunctor' class.
|
||||
type ProjectableFunctor = ProductIsoFunctor
|
||||
|
Loading…
Reference in New Issue
Block a user