-
Notifications
You must be signed in to change notification settings - Fork 410
Closed
Labels
affects-8.5This bug affects the 8.5.x(LTS) versions.This bug affects the 8.5.x(LTS) versions.component/storageseverity/majortype/bugThe issue is confirmed as a bug.The issue is confirmed as a bug.
Description
Bug Report
tiflash/dbms/src/Storages/DeltaMerge/ColumnFile/ColumnFileTinyLocalIndexWriter.cpp
Lines 232 to 233 in 67438e8
| if (file->index_infos) | |
| file->index_infos->insert(file->index_infos->end(), index_infos->begin(), index_infos->end()); |
It should be:
if (const auto & file_index_info = file->getIndexInfos(); file_index_info)
index_infos->insert(index_infos->end(), file_index_info->begin(), file_index_info->end());Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
affects-8.5This bug affects the 8.5.x(LTS) versions.This bug affects the 8.5.x(LTS) versions.component/storageseverity/majortype/bugThe issue is confirmed as a bug.The issue is confirmed as a bug.