You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
MCOL-267 DML support
* DML writes for multi-block dictionary (blob) now works * PrimProc fixed so that the first block in multi-block is read correctly * Performance optimisation (removed string copy into stack) for new dictionary entries
This commit is contained in:
@ -2027,7 +2027,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
nameNeeded = true;
|
||||
}
|
||||
WriteEngine::DctnryTuple dctTuple;
|
||||
memcpy(dctTuple.sigValue, value.c_str(), value.length());
|
||||
dctTuple.sigValue = (unsigned char*)value.c_str();
|
||||
dctTuple.sigSize = value.length();
|
||||
dctTuple.isNull = false;
|
||||
|
||||
@ -2204,7 +2204,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
}
|
||||
|
||||
WriteEngine::DctnryTuple dctTuple;
|
||||
memcpy(dctTuple.sigValue, value.c_str(), value.length());
|
||||
dctTuple.sigValue = (unsigned char*)value.c_str();
|
||||
dctTuple.sigSize = value.length();
|
||||
dctTuple.isNull = false;
|
||||
|
||||
@ -2254,7 +2254,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
nameNeeded = true;
|
||||
}
|
||||
WriteEngine::DctnryTuple dctTuple;
|
||||
memcpy(dctTuple.sigValue, value.c_str(), value.length());
|
||||
dctTuple.sigValue = (unsigned char*)value.c_str();
|
||||
dctTuple.sigSize = value.length();
|
||||
dctTuple.isNull = false;
|
||||
error = fWEWrapper.tokenize(txnId, dctTuple, colType.compressionType);
|
||||
@ -2294,7 +2294,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs,
|
||||
nameNeeded = true;
|
||||
}
|
||||
WriteEngine::DctnryTuple dctTuple;
|
||||
memcpy(dctTuple.sigValue, value.c_str(), value.length());
|
||||
dctTuple.sigValue = (unsigned char*)value.c_str();
|
||||
dctTuple.sigSize = value.length();
|
||||
dctTuple.isNull = false;
|
||||
error = fWEWrapper.tokenize(txnId, dctTuple, colType.compressionType);
|
||||
|
Reference in New Issue
Block a user