mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
The new collector parameter is a pointer to a `compaction_garbage_collector` implementation. This collector is passed all atoms that are expired and would be discarded. The body of `compact_and_expire()` was changed so that it checks cells' tombstone coverage before it checks their expiry, so that cells that are both covered by a tombstone and also expired are not passed to the collector. The collector param is optional and defaults to nullptr. To accommodate the collector, which needs to know the column id, a new `column_id` parameter was added as well.
35 lines
981 B
C++
35 lines
981 B
C++
/*
|
|
* Copyright (C) 2019 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/shared_ptr.hh>
|
|
|
|
using column_count_type = uint32_t;
|
|
|
|
// Column ID, unique within column_kind
|
|
using column_id = column_count_type;
|
|
|
|
class schema;
|
|
class schema_extension;
|
|
|
|
using schema_ptr = seastar::lw_shared_ptr<const schema>;
|