The issue in the indexing is that Identity is an unknown type for SQL.
I added that
in org.apache.zest.index.sql.support.skeletons.AbstractSQLStartup and also
added
if( Identity.class.isAssignableFrom( primitiveClass ) )
{
primitiveClass = Identity.class;
}
else
in
org.apache.zest.index.sql.support.postgresql.PostgreSQLTypeHelper.SQLTypeHelperMixin#getSQLType(java.lang.reflect.Type)
That fixed all the
test org.apache.zest.index.sql.postgresql.PostgreSQLQueryTest,script34
Continuing....
--
Niclas Hedhman, Software Developer
http://zest.apache.org - New Energy for Java