https://issues.apache.org/jira/browse/AMQ-3289 - fix missing dummy arg for blob in initial insert

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1140872 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-06-28 22:27:13 +00:00
parent b5a19163bc
commit 7539c7e975

View File

@ -67,6 +67,7 @@ public class BlobJDBCAdapter extends DefaultJDBCAdapter {
s.setString(4, destination.getQualifiedName());
s.setLong(5, expiration);
s.setLong(6, priority);
s.setString(7, " ");
if (s.executeUpdate() != 1) {
throw new IOException("Failed to add broker message: " + messageID + " in container.");