mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
Bug #27512 Inconsistent tuples when using variable size and >16Gb datamemory
- also run this patch on 32 bit machines to allow online upgrade
This commit is contained in:
parent
5660e224c2
commit
90113ac9ee
1 changed files with 6 additions and 1 deletions
|
@ -1206,7 +1206,12 @@ typedef Ptr<HostBuffer> HostBufferPtr;
|
|||
*/
|
||||
struct Var_part_ref
|
||||
{
|
||||
#if NDB_SIZEOF_CHARP == 4
|
||||
#ifdef NDB_32BIT_VAR_REF
|
||||
/*
|
||||
In versions prior to ndb 6.1.6, 6.2.1 and mysql 5.1.17
|
||||
Running this code limits DataMemory to 16G, also online
|
||||
upgrade not possible between versions
|
||||
*/
|
||||
Uint32 m_ref;
|
||||
STATIC_CONST( SZ32 = 1 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue