HHH-7768 - Names of invalid named queries incorrectly concatenated
This commit is contained in:
parent
2ecf840f0e
commit
dffb86c52d
|
@ -520,7 +520,7 @@ public final class SessionFactoryImpl
|
||||||
String sep = "";
|
String sep = "";
|
||||||
for ( Map.Entry<String,HibernateException> entry : errors.entrySet() ) {
|
for ( Map.Entry<String,HibernateException> entry : errors.entrySet() ) {
|
||||||
LOG.namedQueryError( entry.getKey(), entry.getValue() );
|
LOG.namedQueryError( entry.getKey(), entry.getValue() );
|
||||||
failingQueries.append( entry.getKey() ).append( sep );
|
failingQueries.append( sep ).append( entry.getKey() );
|
||||||
sep = ", ";
|
sep = ", ";
|
||||||
}
|
}
|
||||||
throw new HibernateException( failingQueries.toString() );
|
throw new HibernateException( failingQueries.toString() );
|
||||||
|
|
Loading…
Reference in New Issue