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 fix column values
They weren't being reset between columns
This commit is contained in:
@ -1522,11 +1522,11 @@ uint8_t WE_DMLCommandProc::processBatchInsertBinary(messageqcpp::ByteStream& bs,
|
|||||||
bs >> valuesPerColumn;
|
bs >> valuesPerColumn;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
WriteEngine::ColTupleList colTuples;
|
|
||||||
WriteEngine::DctColTupleList dctColTuples;
|
|
||||||
bool pushWarning = false;
|
bool pushWarning = false;
|
||||||
for (uint32_t j = 0; j < columnCount; j++)
|
for (uint32_t j = 0; j < columnCount; j++)
|
||||||
{
|
{
|
||||||
|
WriteEngine::ColTupleList colTuples;
|
||||||
|
WriteEngine::DctColTupleList dctColTuples;
|
||||||
tableColName.column = colNames[j];
|
tableColName.column = colNames[j];
|
||||||
CalpontSystemCatalog::OID oid = colStructs[j].dataOid;
|
CalpontSystemCatalog::OID oid = colStructs[j].dataOid;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user