Skip to content

Commit 0fb0583

Browse files
committed
指令不区分大小写
1 parent 29b23d9 commit 0fb0583

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/io/sqlman/version/JdbcVersionManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ public void upgrade() throws SQLException {
4343
lockup();
4444
logger.info("Locked");
4545
try {
46-
logger.info("Creating version table");
46+
logger.info("Creating schema version table");
4747
create();
4848

49-
logger.info("Detecting current version");
49+
logger.info("Detecting schema current version");
5050
SqlVersion current = detect();
51-
logger.info("Current version is {}", current);
51+
logger.info("Schema current version is {}", current);
5252

5353
String version = current != null ? current.getVersion() : null;
5454
int ordinal = current != null ? current.getSuccess() ? current.getOrdinal() + 1 : current.getOrdinal() : 0;
@@ -59,7 +59,7 @@ public void upgrade() throws SQLException {
5959
}
6060

6161
if (sources.hasMoreElements()) {
62-
logger.info("DataSource upgrading");
62+
logger.info("Schema upgrading");
6363
}
6464

6565
while (sources.hasMoreElements()) {
@@ -76,7 +76,7 @@ public void upgrade() throws SQLException {
7676
}
7777
}
7878

79-
logger.info("DataSource is up to date");
79+
logger.info("Schema is up to date");
8080
} catch (SQLException ex) {
8181
throw ex;
8282
} catch (Exception ex) {

0 commit comments

Comments
 (0)