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 58cab5e commit 5244c0bCopy full SHA for 5244c0b
src/main/java/org/apache/ibatis/mapping/ResultMapping.java
@@ -148,7 +148,7 @@ private void validate() {
148
}
149
// Issue #4 and GH #39: column is optional only in nested resultmaps but not in the rest
150
if (resultMapping.nestedResultMapId == null && resultMapping.column == null && resultMapping.composites.size() == 0) {
151
- throw new IllegalStateException("Missing column attribute for nested select in mapping " + resultMapping.property);
+ throw new IllegalStateException("Missing column attribute for mapping " + resultMapping.property);
152
153
if (resultMapping.getResultSet() != null) {
154
int numColums = 0;
0 commit comments