Merge branch '0.4.3'
This commit is contained in:
commit
afe3b72a71
2
README
2
README
|
@ -2,4 +2,4 @@ A parser for SQL queries in Haskell.
|
||||||
|
|
||||||
Homepage: http://jakewheat.github.io/simple-sql-parser/latest
|
Homepage: http://jakewheat.github.io/simple-sql-parser/latest
|
||||||
|
|
||||||
Contact: jakewheatmail@gmail.com
|
Contact: jakewheatmail@gmail.com
|
||||||
|
|
|
@ -32,6 +32,8 @@
|
||||||
app(something)} and {oj t1 left outer join ... }
|
app(something)} and {oj t1 left outer join ... }
|
||||||
rename ValueExpr -> ScalarExpr (I think scalar expression is
|
rename ValueExpr -> ScalarExpr (I think scalar expression is
|
||||||
slightly less incorrect)
|
slightly less incorrect)
|
||||||
|
0.4.3
|
||||||
|
tested with ghc 8.0.2 and 8.2.1
|
||||||
0.4.1 (commit c156c5c34e91e1f7ef449d2c1ea14e282104fd90)
|
0.4.1 (commit c156c5c34e91e1f7ef449d2c1ea14e282104fd90)
|
||||||
tested with ghc 7.4.2, 7.6.3, 7.8.4,7.10.0.20150123
|
tested with ghc 7.4.2, 7.6.3, 7.8.4,7.10.0.20150123
|
||||||
simple demonstration of how dialects could be handled internally
|
simple demonstration of how dialects could be handled internally
|
||||||
|
|
|
@ -39,7 +39,7 @@ library
|
||||||
Language.SQL.SimpleSQL.Combinators,
|
Language.SQL.SimpleSQL.Combinators,
|
||||||
Language.SQL.SimpleSQL.Dialect
|
Language.SQL.SimpleSQL.Dialect
|
||||||
other-extensions: TupleSections
|
other-extensions: TupleSections
|
||||||
build-depends: base ,
|
build-depends: base >=4 && <5,
|
||||||
parsec >=3.1 && <3.2,
|
parsec >=3.1 && <3.2,
|
||||||
mtl >=2.1 && <2.3,
|
mtl >=2.1 && <2.3,
|
||||||
pretty >= 1.1 && < 1.2
|
pretty >= 1.1 && < 1.2
|
||||||
|
@ -52,7 +52,7 @@ Test-Suite Tests
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
main-is: RunTests.lhs
|
main-is: RunTests.lhs
|
||||||
hs-source-dirs: .,tools
|
hs-source-dirs: .,tools
|
||||||
Build-Depends: base ,
|
Build-Depends: base >=4 && <5,
|
||||||
parsec >=3.1 && <3.2,
|
parsec >=3.1 && <3.2,
|
||||||
mtl >=2.1 && <2.3,
|
mtl >=2.1 && <2.3,
|
||||||
pretty >= 1.1 && < 1.2,
|
pretty >= 1.1 && < 1.2,
|
||||||
|
@ -94,7 +94,7 @@ Test-Suite Tests
|
||||||
executable SimpleSqlParserTool
|
executable SimpleSqlParserTool
|
||||||
main-is: SimpleSqlParserTool.lhs
|
main-is: SimpleSqlParserTool.lhs
|
||||||
hs-source-dirs: .,tools
|
hs-source-dirs: .,tools
|
||||||
Build-Depends: base ,
|
Build-Depends: base >=4 && <5,
|
||||||
parsec >=3.1 && <3.2,
|
parsec >=3.1 && <3.2,
|
||||||
mtl >=2.1 && <2.3,
|
mtl >=2.1 && <2.3,
|
||||||
pretty >= 1.1 && < 1.2,
|
pretty >= 1.1 && < 1.2,
|
||||||
|
@ -110,7 +110,7 @@ executable SimpleSqlParserTool
|
||||||
executable Fixity
|
executable Fixity
|
||||||
main-is: Fixity.lhs
|
main-is: Fixity.lhs
|
||||||
hs-source-dirs: .,tools
|
hs-source-dirs: .,tools
|
||||||
Build-Depends: base ,
|
Build-Depends: base >=4 && <5,
|
||||||
parsec >=3.1 && <3.2,
|
parsec >=3.1 && <3.2,
|
||||||
mtl >=2.1 && <2.3,
|
mtl >=2.1 && <2.3,
|
||||||
pretty >= 1.1 && < 1.2,
|
pretty >= 1.1 && < 1.2,
|
||||||
|
|
Loading…
Reference in a new issue