1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-03 20:43:11 +03:00

wl2126 - ndb - bug fix in set_new_bound & testScanPerf

This commit is contained in:
joreland@mysql.com
2004-11-25 15:36:39 +01:00
parent 047a3d1258
commit b9c920baa1
2 changed files with 38 additions and 56 deletions

View File

@@ -1630,7 +1630,7 @@ NdbIndexScanOperation::set_new_bound()
Uint32 bound_head = * m_first_bound_word;
bound_head |= (theTupKeyLen - m_this_bound_start) << 16;
* m_first_bound_word = bound_head;
m_first_bound_word = theKEYINFOptr;
m_first_bound_word = theKEYINFOptr + theTotalNrOfKeyWordInSignal;;
m_this_bound_start = theTupKeyLen;
}