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
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:
@ -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())
|
||||
|
Reference in New Issue
Block a user