mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
wl2077: ndb, disable scanning of backup fragments
(temporary)
This commit is contained in:
parent
b254e69a38
commit
56a59cf301
1 changed files with 6 additions and 1 deletions
|
@ -8944,7 +8944,12 @@ void Dbtc::execDIGETPRIMCONF(Signal* signal)
|
|||
scanptr.i = scanFragptr.p->scanRec;
|
||||
ptrCheckGuard(scanptr, cscanrecFileSize, scanRecord);
|
||||
|
||||
if(ScanFragReq::getReadCommittedFlag(scanptr.p->scanRequestInfo))
|
||||
/**
|
||||
* This must be false as select count(*) otherwise
|
||||
* can "pass" committing on backup fragments and
|
||||
* get incorrect row count
|
||||
*/
|
||||
if(false && ScanFragReq::getReadCommittedFlag(scanptr.p->scanRequestInfo))
|
||||
{
|
||||
jam();
|
||||
Uint32 max = 3+signal->theData[6];
|
||||
|
|
Loading…
Reference in a new issue