1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

A fix for MCOL-4174 Review/refactor frontend/connector code

- The code in ha_mcs_partition.cpp erroneously printed data
  to a temporary ostringstream "oss" instead of "output".

- The left-side adjustfield (applied when printing the range values)
  unintentionally disappeared during MCOL-4174 refactoring.
  Restoring left adjustfield in TypeHandler::PrintPartitionValue*().
This commit is contained in:
Alexander Barkov
2020-11-20 10:23:13 +04:00
parent 820703d2d0
commit 61b55127ac
2 changed files with 18 additions and 8 deletions

View File

@ -717,7 +717,7 @@ extern "C"
else
{
const datatypes::TypeHandler *h= ct.typeHandler();
oss << h->formatPartitionInfo(ct, partIt->second);
output << h->formatPartitionInfo(ct, partIt->second);
}
if (partIt->second.is_disabled())