Skip to content

Commit ebfa8b2

Browse files
committed
Merge branch 'master' into statement-configuration
2 parents d656b15 + 8a4dcf2 commit ebfa8b2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/java/org/mybatis/dynamic/sql/util/springbatch/SpringBatchUtility.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static Map<String, Object> toParameterValues(SelectStatementProvider sele
4141
/**
4242
* Select builder that renders in a manner appropriate for the MyBatisPagingItemReader.
4343
*
44-
* <b>Important</b> rendered SQL will contain LIMIT and OFFSET clauses in the SELECT statement. If your database
44+
* <p><b>Important</b> rendered SQL will contain LIMIT and OFFSET clauses in the SELECT statement. If your database
4545
* (Oracle) does not support LIMIT and OFFSET, the queries will fail.
4646
*
4747
* @param selectList a column list for the SELECT statement

src/test/java/examples/joins/JoinMapperTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ class JoinMapperTest {
6060
void setup() throws Exception {
6161
Class.forName(JDBC_DRIVER);
6262
InputStream is = getClass().getResourceAsStream("/examples/joins/CreateJoinDB.sql");
63+
assert is != null;
6364
try (Connection connection = DriverManager.getConnection(JDBC_URL, "sa", "")) {
6465
ScriptRunner sr = new ScriptRunner(connection);
6566
sr.setLogWriter(null);

0 commit comments

Comments
 (0)