1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-27 21:01:50 +03:00

MCOL-769 fix column values

They weren't being reset between columns
This commit is contained in:
Andrew Hutchings
2017-06-15 10:24:59 +01:00
parent 8a9c58cf6b
commit cb52f1a712

View File

@ -1522,12 +1522,12 @@ uint8_t WE_DMLCommandProc::processBatchInsertBinary(messageqcpp::ByteStream& bs,
bs >> valuesPerColumn;
try
{
WriteEngine::ColTupleList colTuples;
WriteEngine::DctColTupleList dctColTuples;
bool pushWarning = false;
for (uint32_t j = 0; j < columnCount; j++)
{
tableColName.column = colNames[j];
WriteEngine::ColTupleList colTuples;
WriteEngine::DctColTupleList dctColTuples;
tableColName.column = colNames[j];
CalpontSystemCatalog::OID oid = colStructs[j].dataOid;
CalpontSystemCatalog::ColType colType;