diff --git a/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/statements/StatementInterceptor.kt b/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/statements/StatementInterceptor.kt index bc12d75622..01eafd0a4c 100644 --- a/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/statements/StatementInterceptor.kt +++ b/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/statements/StatementInterceptor.kt @@ -15,7 +15,9 @@ import org.jetbrains.exposed.sql.statements.api.PreparedStatementApi interface StatementInterceptor { fun beforeExecution(transaction: Transaction, context: StatementContext) {} + fun afterStatementPrepared(transaction: Transaction, preparedStatement: PreparedStatementApi) {} + fun afterExecution(transaction: Transaction, contexts: List, executedStatement: PreparedStatementApi) {} fun beforeCommit(transaction: Transaction) {}