From 6b7572c57dd663f7b3e21746272a9c04f413c8d1 Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Thu, 21 Oct 2010 23:09:00 +0000 Subject: Add hybrid SQL-CLFS store that can be used on Windows systems Vista, Win Server 2008 and up - these have the Common Log File System facility. The CLFS store uses CLFS to store/recover messages and transactions instead of SQL. SQL still holds queues, bindings, exchanges, configs. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1026175 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/store/ms-sql/MessageMapRecordset.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cpp/src/qpid/store/ms-sql') diff --git a/cpp/src/qpid/store/ms-sql/MessageMapRecordset.cpp b/cpp/src/qpid/store/ms-sql/MessageMapRecordset.cpp index a2ff8aefdd..ce9fa61010 100644 --- a/cpp/src/qpid/store/ms-sql/MessageMapRecordset.cpp +++ b/cpp/src/qpid/store/ms-sql/MessageMapRecordset.cpp @@ -224,8 +224,7 @@ MessageMapRecordset::recover(MessageQueueMap& msgMap) (LPVOID *)&piAdoRecordBinding); piAdoRecordBinding->BindToRecordset(&b); while (!rs->EndOfFile) { - qpid::store::QueueEntry entry; - entry.queueId = b.queueId; + qpid::store::QueueEntry entry(b.queueId); if (b.xidStatus == adFldOK && b.xidLength > 0) { entry.xid.assign(b.xid, b.xidLength); entry.tplStatus = -- cgit v1.2.1