Files
scylladb/utils/digest_algorithm.hh
Avi Kivity 2fbd78c769 feature: grandfather DIGEST_FOR_NULL_VALUES
The DIGEST_FOR_NULL_VALUES feature was added in 21a77612b3 (2020; 4.4)
and can now be assumed to be always present. The hasher which it invoked
is removed.
2024-05-18 00:24:00 +03:00

21 lines
275 B
C++

/*
* Copyright (C) 2016-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include <cstdint>
namespace query {
enum class digest_algorithm : uint8_t {
none = 0, // digest not required
xxHash = 3, // default algorithm
};
}