1
Fork 0

check with stackage/ghc 8.2.1 snapshot

This commit is contained in:
Jake Wheat 2017-08-05 12:43:56 +03:00
parent a33de9d7e0
commit 25982a78db
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2) # Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-9.0 resolver: lts-9.0
#resolver: nightly-2017-07-31
# Local packages, usually specified by relative directory name # Local packages, usually specified by relative directory name
packages: packages:

View file

@ -55,7 +55,7 @@ expression parts.
> module Language.SQL.SimpleSQL.ErrorMessages where > module Language.SQL.SimpleSQL.ErrorMessages where
> import Language.SQL.SimpleSQL.Parser > {-import Language.SQL.SimpleSQL.Parser
> import Data.List > import Data.List
> import Text.Groom > import Text.Groom
@ -147,3 +147,4 @@ window functions
> pExprs x y = > pExprs x y =
> let l = valExprs x ++ queryExprs y > let l = valExprs x ++ queryExprs y
> in intercalate "\n\n\n\n" $ map (\(a,b) -> a ++ "\n" ++ b) l > in intercalate "\n\n\n\n" $ map (\(a,b) -> a ++ "\n" ++ b) l
> -}