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 a049297 commit 1d0b2ddCopy full SHA for 1d0b2dd
src/test/java/org/apache/ibatis/builder/ParameterExpressionTest.java
@@ -138,4 +138,11 @@ public void invalidOldJdbcTypeFormat() {
138
new ParameterExpression("id:");
139
}
140
141
+ @Test
142
+ public void invalidJdbcTypeOptUsingExpression() {
143
+ expectedException.expect(BuilderException.class);
144
+ expectedException.expectMessage(is("Parsing error in {(expression)+} in position 12"));
145
+ new ParameterExpression("(expression)+");
146
+ }
147
+
148
0 commit comments