Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/hql
In directory sc8-pr-cvs1:/tmp/cvs-serv13138/hql
Modified Files:
PathExpressionParser.java
Log Message:
added CompositeUserType
refactored handling of component path expressions
PersistentIdentifierGenerators now aware of schema
Index: PathExpressionParser.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/hql/PathExpressionParser.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** PathExpressionParser.java 3 Apr 2003 12:34:24 -0000 1.16
--- PathExpressionParser.java 6 Apr 2003 02:28:57 -0000 1.17
***************
*** 214,218 ****
String path = getPropertyPath();
Type type = q.getPersisterForName(currentName).getPropertyType(path);
! if (type==null) throw new QueryException("could not resolve property type: " + path);
return type;
}
--- 214,219 ----
String path = getPropertyPath();
Type type = q.getPersisterForName(currentName).getPropertyType(path);
! if (type==null)
! throw new QueryException("could not resolve property type: " + path);
return type;
}
|