You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kw...@apache.org on 2017/10/23 14:18:13 UTC

[2/2] qpid-broker-j git commit: QPID-7982: [Qpid Broker-J] For MySQL/MariaDB default to a LONGBLOB for message content.

QPID-7982: [Qpid Broker-J] For MySQL/MariaDB default to a LONGBLOB for message content.


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/d5c1f424
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/d5c1f424
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/d5c1f424

Branch: refs/heads/master
Commit: d5c1f4245106be8f8210bab57659ca526e1024a3
Parents: b47ca13
Author: Keith Wall <kw...@apache.org>
Authored: Mon Oct 23 14:52:16 2017 +0100
Committer: Keith Wall <kw...@apache.org>
Committed: Mon Oct 23 14:52:16 2017 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/qpid/server/store/jdbc/JDBCDetails.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/d5c1f424/broker-plugins/jdbc-store/src/main/java/org/apache/qpid/server/store/jdbc/JDBCDetails.java
----------------------------------------------------------------------
diff --git a/broker-plugins/jdbc-store/src/main/java/org/apache/qpid/server/store/jdbc/JDBCDetails.java b/broker-plugins/jdbc-store/src/main/java/org/apache/qpid/server/store/jdbc/JDBCDetails.java
index 6b9d4f0..0cdf2c6 100644
--- a/broker-plugins/jdbc-store/src/main/java/org/apache/qpid/server/store/jdbc/JDBCDetails.java
+++ b/broker-plugins/jdbc-store/src/main/java/org/apache/qpid/server/store/jdbc/JDBCDetails.java
@@ -62,10 +62,10 @@ public abstract class JDBCDetails
                                                                          true);
         private static final JDBCDetails DERBY = new KnownJDBCDetails("derby", "blob", "varchar(%d) for bit data", "bigint", false,
                                                                       true);
-        private static final JDBCDetails MYSQL = new KnownJDBCDetails("mysql", "blob", "varbinary(%d)", "bigint", false,
+        private static final JDBCDetails MYSQL = new KnownJDBCDetails("mysql", "longblob", "varbinary(%d)", "bigint", false,
                 true);
 
-        private static final JDBCDetails MARIA_DB = new KnownJDBCDetails("mariadb", "blob", "varbinary(%d)",
+        private static final JDBCDetails MARIA_DB = new KnownJDBCDetails("mariadb", "longblob", "varbinary(%d)",
                                                                          "bigint", false, true);
 
         static


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org