forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validation.hh
34 lines (24 loc) · 865 Bytes
/
validation.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* Copyright (C) 2015-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#pragma once
#include <seastar/core/sstring.hh>
#include "schema/schema_fwd.hh"
using namespace seastar;
class partition_key_view;
namespace data_dictionary {
class database;
}
namespace validation {
constexpr size_t max_key_size = std::numeric_limits<uint16_t>::max();
// Returns an error string if key is invalid, a disengaged optional otherwise.
std::optional<sstring> is_cql_key_invalid(const schema& schema, partition_key_view key);
void validate_cql_key(const schema& schema, partition_key_view key);
schema_ptr validate_column_family(data_dictionary::database db, const sstring& keyspace_name, const sstring& cf_name);
void validate_keyspace(data_dictionary::database db, const sstring& keyspace_name);
}