diff options
author | unknown <joreland@mysql.com> | 2005-03-09 07:49:03 +0100 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2005-03-09 07:49:03 +0100 |
commit | 6f4a99a10f1c0a55f952bc9e42b258275e9a2f6a (patch) | |
tree | 29729dfb0e24433195ee76e9549c9d42c8517673 /ndb | |
parent | 9606577705362ec585cc90ae5e908a0ee526e17b (diff) | |
download | mariadb-git-6f4a99a10f1c0a55f952bc9e42b258275e9a2f6a.tar.gz |
bug#9052 - ndb - Use correct length during unique index build
(recommit as 4.1->5.0 merge is not possible)
ndb/src/kernel/blocks/trix/Trix.cpp:
Use correct length during unique index build
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/kernel/blocks/trix/Trix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/kernel/blocks/trix/Trix.cpp b/ndb/src/kernel/blocks/trix/Trix.cpp index 75bc19b6a20..cd11cb4d575 100644 --- a/ndb/src/kernel/blocks/trix/Trix.cpp +++ b/ndb/src/kernel/blocks/trix/Trix.cpp @@ -712,7 +712,7 @@ void Trix::setupSubscription(Signal* signal, SubscriptionRecPtr subRecPtr) subCreateReq->subscriptionType = SubCreateReq::SingleTableScan; sendSignal(SUMA_REF, GSN_SUB_CREATE_REQ, - signal, SubCreateReq::SignalLength, JBB, orderPtr, 1); + signal, SubCreateReq::SignalLength+1, JBB, orderPtr, 1); } void Trix::setupTableScan(Signal* signal, SubscriptionRecPtr subRecPtr) |