/
GraphTreeHeap
/
museumdb2
Обзор
Документация
Войти
/
GraphTreeHeap
/
museumdb2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
db/attribute_group_iterator_impl.cc
20 строк
684 B
Jay Huh
MultiCfIterator - AttributeGroupIter Impl & CoalescingIter Optimization (#12534)
16 апр 2024, 18:45
16 апр 2024, 18:45
d34712e
Код
Авторство
О чём код?
// Copyright (c) Meta Platforms, Inc. and affiliates. // This source code is licensed under both the GPLv2 (found in the // COPYING file in the root directory) and Apache 2.0 License // (found in the LICENSE.Apache file in the root directory). #include "db/attribute_group_iterator_impl.h" namespace ROCKSDB_NAMESPACE { const AttributeGroups kNoAttributeGroups; const IteratorAttributeGroups kNoIteratorAttributeGroups; void AttributeGroupIteratorImpl::AddToAttributeGroups( const autovector<MultiCfIteratorInfo>& items) { for (const auto& item : items) { attribute_groups_.emplace_back(item.cfh, &item.iterator->columns()); } } } // namespace ROCKSDB_NAMESPACE