@@ -77,7 +77,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
77
77
int statementPos , int statementLine , int statementCol ,
78
78
int nonCommentPartPos , int nonCommentPartLine , int nonCommentPartCol ,
79
79
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 {
81
81
LOG .debug (sql );
82
82
if (statementType == DB2Z_CALL_STATEMENT ) {
83
83
Matcher callMatcher = DB2Z_CALL_WITH_PARMS_REGEX .matcher (sql );
@@ -108,7 +108,7 @@ protected ParsedSqlStatement createStatement(PeekingReader reader, Recorder reco
108
108
LOG .debug ("createStatement: DB2Z CALL no parms " + statementType + " " + sql );
109
109
return super .createStatement (reader , recorder , statementPos , statementLine , statementCol ,
110
110
nonCommentPartPos , nonCommentPartLine , nonCommentPartCol ,
111
- statementType , canExecuteInTransaction , delimiter , sql , batchable
111
+ statementType , canExecuteInTransaction , delimiter , sql , tokens , batchable
112
112
);
113
113
}
114
114
0 commit comments