You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-769 Don't use version buffer in I_S mode
We don't need the version buffer in bulk write I_S mode since auto commit will be on and we use the first empty block.
This commit is contained in:
@ -1177,6 +1177,9 @@ timer.stop("allocRowId");
|
||||
//--------------------------------------------------------------------------
|
||||
// Tokenize data if needed
|
||||
//--------------------------------------------------------------------------
|
||||
if (insertSelect)
|
||||
BRMWrapper::setUseVb( false );
|
||||
else
|
||||
BRMWrapper::setUseVb( true );
|
||||
dictStr::iterator dctStr_iter;
|
||||
ColTupleList::iterator col_iter;
|
||||
@ -1282,6 +1285,9 @@ timer.stop("tokenize");
|
||||
}
|
||||
}
|
||||
}
|
||||
if (insertSelect)
|
||||
BRMWrapper::setUseVb( false );
|
||||
else
|
||||
BRMWrapper::setUseVb( true );
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user