diff --git a/Database/HsSqlPpp/Tests/AstCheckTests.lhs b/Database/HsSqlPpp/Tests/AstCheckTests.lhs
--- a/Database/HsSqlPpp/Tests/AstCheckTests.lhs
+++ b/Database/HsSqlPpp/Tests/AstCheckTests.lhs
@@ -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"
diff --git a/hssqlppp.cabal b/hssqlppp.cabal
--- a/hssqlppp.cabal
+++ b/hssqlppp.cabal
@@ -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,
