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 dc038db commit 063da66Copy full SHA for 063da66
src/test/java/org/mybatis/dynamic/sql/InvalidSQLTest.java
@@ -207,7 +207,8 @@ void testInvalidSelectStatementWithEmptyGroupByList() {
207
@Test
208
void testInvalidUpdateStatement() {
209
UpdateModel.Builder builder = new UpdateModel.Builder()
210
- .withTable(person);
+ .withTable(person)
211
+ .withStatementConfiguration(new StatementConfiguration());
212
213
assertThatExceptionOfType(InvalidSqlException.class).isThrownBy(builder::build)
214
.withMessage(Messages.getString("ERROR.17"));
0 commit comments