Skip to content

Commit cd48007

Browse files
committed
change createStatement signature
1 parent df72dce commit cd48007

File tree

1 file changed

+2
-2
lines changed
  • flyway-database-db2zos/src/main/java/org/flywaydb/community/database/db2z

1 file changed

+2
-2
lines changed

flyway-database-db2zos/src/main/java/org/flywaydb/community/database/db2z/DB2ZParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
7777
int statementPos, int statementLine, int statementCol,
7878
int nonCommentPartPos, int nonCommentPartLine, int nonCommentPartCol,
7979
StatementType statementType, boolean canExecuteInTransaction,
80-
Delimiter delimiter, String sql, boolean batchable) throws IOException {
80+
Delimiter delimiter, String sql, List<Token> tokens, boolean batchable) throws IOException {
8181
LOG.debug(sql);
8282
if (statementType == DB2Z_CALL_STATEMENT) {
8383
Matcher callMatcher = DB2Z_CALL_WITH_PARMS_REGEX.matcher(sql);
@@ -108,7 +108,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
108108
LOG.debug("createStatement: DB2Z CALL no parms " + statementType + " " + sql);
109109
return super.createStatement(reader, recorder, statementPos, statementLine, statementCol,
110110
nonCommentPartPos, nonCommentPartLine, nonCommentPartCol,
111-
statementType, canExecuteInTransaction, delimiter, sql, batchable
111+
statementType, canExecuteInTransaction, delimiter, sql, tokens, batchable
112112
);
113113
}
114114

0 commit comments

Comments
 (0)