We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5067ec commit bc8e38aCopy full SHA for bc8e38a
hibernate-core/src/main/java/org/hibernate/query/internal/NativeQueryImpl.java
@@ -489,9 +489,9 @@ protected boolean applyQuerySpaces(Object value) {
489
}
490
491
if ( value instanceof Collection ) {
492
-// if ( querySpaces == null ) {
493
-// querySpaces = new ArrayList<>();
494
-// }
+ if ( querySpaces == null ) {
+ querySpaces = new ArrayList<>();
+ }
495
querySpaces.addAll( (Collection<String>) value );
496
return true;
497
0 commit comments