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.
21 lines
275 B
C++
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
|
|
};
|
|
|
|
}
|