Github user clebertsuconic commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/1822#discussion_r172699944 --- Diff: artemis-jdbc-store/src/main/java/org/apache/activemq/artemis/jdbc/store/drivers/AbstractJDBCDriver.java --- @@ -109,7 +109,7 @@ public void stop() throws SQLException { protected abstract void createSchema() throws SQLException; protected final void createTable(String... schemaSqls) throws SQLException { - createTableIfNotExists(connection, sqlProvider.getTableName(), schemaSqls); + createTableIfNotExists(sqlProvider.getTableName(), schemaSqls); --- End diff -- easier to ask than reading the code :) Why removing this parameter here? (sorry if I'm lazy.. I have a bunch of other PRs to check.. so it was easier to ask).
---