We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a55998 commit 8b7fbcbCopy full SHA for 8b7fbcb
hibernate-core/src/main/java/org/hibernate/query/internal/QueryParameterBindingsImpl.java
@@ -194,7 +194,7 @@ public QueryParameterBinding getBinding(int position) {
194
195
public void verifyParametersBound(boolean reserveFirstParameter) {
196
for ( Map.Entry<QueryParameter, QueryParameterBinding> bindEntry : parameterBindingMap.entrySet() ) {
197
- if ( bindEntry.getValue() == null ) {
+ if ( bindEntry.getValue().getBindValue() == null ) {
198
if ( bindEntry.getKey().getName() == null ) {
199
throw new QueryException( "Named parameter [" + bindEntry.getKey().getName() + "] not set" );
200
}
0 commit comments