[hibernate-issues] [Hibernate-JIRA] Created: (ANN-518) Incorrectly generated SQL from MapBinder

Arnout Engelen (JIRA) noreply at atlassian.com
Thu Jan 4 10:07:44 EST 2007


Incorrectly generated SQL from MapBinder
----------------------------------------

         Key: ANN-518
         URL: http://opensource.atlassian.com/projects/hibernate/browse/ANN-518
     Project: Hibernate Annotations
        Type: Bug

  Components: binder  
    Reporter: Arnout Engelen


http://fisheye.jboss.org/browse/Hibernate/trunk/HibernateExt/metadata/src/java/org/hibernate/cfg/annotations/MapBinder.java?r=trunk#l264

StringBuilder fromAndWhereSb = new StringBuilder( " from " )
 	                                        .append( associatedClass.getTable().getName() )
 	                                        .append(" as ").append(alias).append(" where ");

Should probably be:

StringBuilder fromAndWhereSb = new StringBuilder( " from " )
 	                                        .append( associatedClass.getTable().getName() )
 	                                        .append(alias).append(" where ");


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira




More information about the hibernate-issues mailing list