We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7125e13 commit 026e872Copy full SHA for 026e872
1 file changed
src/main/java/io/sqlman/version/JdbcVersionManager.java
@@ -69,8 +69,8 @@ public void upgrade() throws SQLException {
69
upgrade(script);
70
} else {
71
int sqls = script.sqls();
72
- for (int index = ordinal; index <= sqls; index++) {
73
- upgrade(script, index);
+ for (int odn = ordinal; odn <= sqls; odn++) {
+ upgrade(script, odn);
74
}
75
ordinal = 1;
76
0 commit comments