File tree 1 file changed +5
-6
lines changed
beam-core/Database/Beam/Query
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
{-# OPTIONS_GHC -fno-warn-name-shadowing -fno-warn-unused-binds #-}
2
- {-# LANGUAGE UndecidableInstances #-}
3
- {-# LANGUAGE ScopedTypeVariables #-}
4
2
{-# LANGUAGE CPP #-}
3
+ {-# LANGUAGE ScopedTypeVariables #-}
4
+ {-# LANGUAGE UndecidableInstances #-}
5
5
6
6
module Database.Beam.Query.SQL92
7
7
( buildSql92Query' ) where
8
8
9
- import Database.Beam.Query.Internal
10
9
import Database.Beam.Backend.SQL
10
+ import Database.Beam.Query.Internal
11
11
12
- import Control.Monad.Free.Church
13
12
import Control.Monad.Free
13
+ import Control.Monad.Free.Church
14
14
15
15
#if !MIN_VERSION_base(4, 11, 0)
16
- import Control.Monad.Writer hiding ((<>) )
17
16
import Data.Semigroup
18
17
#endif
19
18
20
19
import Data.Maybe
21
- import Data.Proxy (Proxy (Proxy ))
20
+ import Data.Proxy (Proxy (Proxy ))
22
21
import Data.String
23
22
import qualified Data.Text as T
24
23
You can’t perform that action at this time.
0 commit comments