forked from scylladb/scylladb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcql_type_parser.hh
47 lines (35 loc) · 1004 Bytes
/
cql_type_parser.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
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Modified by ScyllaDB
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
*/
#pragma once
#include <vector>
#include <seastar/core/sstring.hh>
#include "types/types.hh"
#include "seastarx.hh"
class types_metadata;
namespace data_dictionary {
class keyspace_metadata;
class user_types_storage;
class user_types_metadata;
}
namespace db {
namespace cql_type_parser {
data_type parse(const sstring& keyspace, const sstring& type, const data_dictionary::user_types_metadata& utm);
data_type parse(const sstring& keyspace, const sstring& type, const data_dictionary::user_types_storage& uts);
class raw_builder {
public:
raw_builder(data_dictionary::keyspace_metadata &ks);
~raw_builder();
void add(sstring name, std::vector<sstring> field_names, std::vector<sstring> field_types);
future<std::vector<user_type>> build();
private:
class impl;
std::unique_ptr<impl>
_impl;
};
}
}