mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-01 22:41:43 +03:00
Merge pull request #2721 from tntnatbry/MCOL-5318-MCOL-5319-dev
Revert "This commit fixes an incorrect predicate in the if condition (#2608)"
This commit is contained in:
commit
00e766253c
@ -2424,7 +2424,7 @@ uint8_t WE_DMLCommandProc::processBatchInsertHwm(messageqcpp::ByteStream& bs, st
|
|||||||
if ((aIt->partNum > aExtentInfo.fPartition) ||
|
if ((aIt->partNum > aExtentInfo.fPartition) ||
|
||||||
((aIt->partNum == aExtentInfo.fPartition) && (aIt->segNum > aExtentInfo.fSegment)) ||
|
((aIt->partNum == aExtentInfo.fPartition) && (aIt->segNum > aExtentInfo.fSegment)) ||
|
||||||
((aIt->partNum == aExtentInfo.fPartition) && (aIt->segNum == aExtentInfo.fSegment) &&
|
((aIt->partNum == aExtentInfo.fPartition) && (aIt->segNum == aExtentInfo.fSegment) &&
|
||||||
(aIt->hwm > aExtentInfo.fLocalHwm)))
|
(aIt->segNum > aExtentInfo.fLocalHwm)))
|
||||||
{
|
{
|
||||||
aExtentInfo.fPartition = aIt->partNum;
|
aExtentInfo.fPartition = aIt->partNum;
|
||||||
aExtentInfo.fDbRoot = aIt->dbRoot;
|
aExtentInfo.fDbRoot = aIt->dbRoot;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user