packages feed

hssqlppp 0.0.7 → 0.0.8

raw patch · 2 files changed

+16/−3 lines, 2 filesdep +sybdep ~base

Dependencies added: syb

Dependency ranges changed: base

Files

Database/HsSqlPpp/Tests/AstCheckTests.lhs view
@@ -513,6 +513,18 @@ >         $ Right [Just $ SelectInfo $ SetOfType (UnnamedCompositeType [("g",ScalarType "int4")])] >      ]) +identifiers in select parts++>{-    ,testGroup "select part identifiers"+>     (mapStatementInfo [+>       p "select relname,attname from pg_class\n\+>         \inner join pg_attribute\n\+>         \on pg_attribute.attrelid = pg_class.oid;"+>         $ Right [Just $ SelectInfo $ SetOfType $ UnnamedCompositeType [("relvar_name",ScalarType "name")]]+>      ])-}+++ insert  >    ,testGroup "insert"
hssqlppp.cabal view
@@ -1,5 +1,5 @@ Name:                hssqlppp-Version:             0.0.7+Version:             0.0.8 Synopsis:            Sql parser and type checker Description:     Sql parser, pretty printer and type checker, targets PostGreSQL SQL@@ -65,7 +65,7 @@                      sqltestfiles/client.sql  Library-  Build-Depends:     base >= 3 && < 5,+  Build-Depends:     base >= 4 && < 5,                      mtl,                      parsec >= 3,                      pretty,@@ -73,7 +73,8 @@                      regex-posix,                      HDBC,                      HDBC-postgresql,-                     directory+                     directory,+                     syb   Exposed-modules:   Database.HsSqlPpp.Ast.Ast,                      Database.HsSqlPpp.Parsing.Parser,                      Database.HsSqlPpp.PrettyPrinter.PrettyPrinter,