You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/06/01 21:33:20 UTC

[5/5] activemq-artemis git commit: This closes #550

This closes #550


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/e64ea527
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/e64ea527
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/e64ea527

Branch: refs/heads/master
Commit: e64ea5278f8eb0e4d2b706f20fb65179d65b6788
Parents: ae73001 634fc1b
Author: Clebert Suconic <cl...@apache.org>
Authored: Wed Jun 1 17:30:51 2016 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Wed Jun 1 17:30:51 2016 -0400

----------------------------------------------------------------------
 artemis-jdbc-store/pom.xml                      |   7 +
 .../activemq/artemis/jdbc/store/JDBCUtils.java  |  47 ++-
 .../jdbc/store/drivers/AbstractJDBCDriver.java  | 129 ++++++++
 .../store/drivers/derby/DerbySQLProvider.java   |  59 ++++
 .../store/drivers/mysql/MySQLSQLProvider.java   |  64 ++++
 .../drivers/postgres/PostgresSQLProvider.java   |  53 +++
 .../PostgresSequentialSequentialFileDriver.java | 169 ++++++++++
 .../jdbc/store/file/JDBCSequentialFile.java     | 170 ++++------
 .../store/file/JDBCSequentialFileFactory.java   |  98 ++----
 .../file/JDBCSequentialFileFactoryDriver.java   | 323 +++++++++++++++++++
 .../jdbc/store/file/sql/DerbySQLProvider.java   |  52 ---
 .../jdbc/store/file/sql/GenericSQLProvider.java | 143 --------
 .../jdbc/store/file/sql/SQLProvider.java        |  46 ---
 .../jdbc/store/journal/JDBCJournalImpl.java     | 131 +++-----
 .../jdbc/store/sql/GenericSQLProvider.java      | 201 ++++++++++++
 .../artemis/jdbc/store/sql/SQLProvider.java     |  60 ++++
 .../file/JDBCSequentialFileFactoryTest.java     |   9 +-
 .../impl/journal/JDBCJournalStorageManager.java |   6 +-
 .../artemis/tests/util/ActiveMQTestBase.java    |  38 ++-
 .../artemis/tests/util/ThreadLeakCheckRule.java |   4 +
 pom.xml                                         |   8 +
 tests/integration-tests/pom.xml                 |  11 +-
 .../largemessage/LargeMessageTestBase.java      |   7 +
 .../RolesConfigurationStorageTest.java          |   1 -
 .../persistence/StorageManagerTestBase.java     |  12 +-
 .../integration/xa/BasicXaRecoveryTest.java     |   3 +
 tests/stress-tests/pom.xml                      |   6 +
 27 files changed, 1336 insertions(+), 521 deletions(-)
----------------------------------------------------------------------