Skip to content

Commit 13d90ea

Browse files
committed
Updates after rendering refactoring
1 parent 882c8ef commit 13d90ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/java/examples/r2dbc/raw/RawR2DBCTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ record = new AnimalData();
14491449
.build();
14501450

14511451
assertThatExceptionOfType(UnsupportedOperationException.class).isThrownBy(() -> multiRowInsert.render(H2_R2DBC))
1452-
.withMessage(Messages.getString("ERROR.39"));
1452+
.withMessage(Messages.getString("ERROR.44"));
14531453
}
14541454

14551455
@Test
@@ -1476,7 +1476,7 @@ record = new AnimalData();
14761476
.build();
14771477

14781478
assertThatExceptionOfType(UnsupportedOperationException.class).isThrownBy(() -> batchInsert.render(H2_R2DBC))
1479-
.withMessage(Messages.getString("ERROR.39"));
1479+
.withMessage(Messages.getString("ERROR.44"));
14801480
}
14811481

14821482
// @Test

src/test/java/org/mybatis/dynamic/sql/render/AbstractR2DBCRenderingStrategy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
public abstract class AbstractR2DBCRenderingStrategy extends RenderingStrategy{
1616
@Override
1717
public final String getRecordBasedInsertBinding(BindableColumn<?> column, String parameterName) {
18-
throw new UnsupportedOperationException(Messages.getString("ERROR.39")); //$NON-NLS-1$
18+
throw new UnsupportedOperationException(Messages.getString("ERROR.44")); //$NON-NLS-1$
1919
}
2020

2121
@Override
2222
public final String getRecordBasedInsertBinding(BindableColumn<?> column, String prefix, String parameterName) {
23-
throw new UnsupportedOperationException(Messages.getString("ERROR.39")); //$NON-NLS-1$
23+
throw new UnsupportedOperationException(Messages.getString("ERROR.44")); //$NON-NLS-1$
2424
}
2525
}

0 commit comments

Comments
 (0)