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
Replace getBinaryField
This commit is contained in:
@ -205,7 +205,7 @@ uint8_t WE_DMLCommandProc::processSingleInsert(messageqcpp::ByteStream& bs, std:
|
||||
colStruct.colDataType = colType.colDataType;
|
||||
|
||||
dctnryStruct.fCharsetNumber = colType.charsetNumber;
|
||||
|
||||
|
||||
if (colStruct.tokenFlag)
|
||||
{
|
||||
dctnryStruct.dctnryOid = colType.ddn.dictOID;
|
||||
@ -1656,7 +1656,7 @@ uint8_t WE_DMLCommandProc::processBatchInsertBinary(messageqcpp::ByteStream& bs,
|
||||
}
|
||||
|
||||
// @Bug 5996 validate hwm before starts
|
||||
// TODO MCOL-5021 hasAuxCol is hardcoded to false; add support here.
|
||||
// TODO MCOL-5021 hasAuxCol is hardcoded to false; add support here.
|
||||
rc = validateColumnHWMs(ridList, systemCatalogPtr, colDBRootExtentInfo, "Starting", false);
|
||||
|
||||
if (rc != 0)
|
||||
@ -3113,7 +3113,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs, std::strin
|
||||
{
|
||||
datatypes::Decimal dec(0, fetchColScales[fetchColPos],
|
||||
rowGroups[txnId]->getPrecision()[fetchColPos],
|
||||
row.getBinaryField<int128_t>(fetchColPos));
|
||||
row.getTSInt128Field(fetchColPos).getValPtr());
|
||||
value = dec.toString(true);
|
||||
break;
|
||||
}
|
||||
@ -3468,7 +3468,7 @@ uint8_t WE_DMLCommandProc::processUpdate(messageqcpp::ByteStream& bs, std::strin
|
||||
{
|
||||
datatypes::Decimal dec(0, fetchColScales[fetchColPos],
|
||||
rowGroups[txnId]->getPrecision()[fetchColPos],
|
||||
row.getBinaryField<int128_t>(fetchColPos));
|
||||
row.getTSInt128Field(fetchColPos).getValPtr());
|
||||
value = dec.toString(true);
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user