userver: userver/ydb/io/supported_types.hpp Source File
Loading...
Searching...
No Matches
supported_types.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/ydb/io/supported_types.hpp
4///
5/// Available primitive types:
6/// * ValueType::Bool, bool
7/// * ValueType::Int32, std::int32_t
8/// * ValueType::Uint32, std::uint32_t
9/// * ValueType::Int64, std::int64_t
10/// * ValueType::Uint64, std::uint64_t
11/// * ValueType::Double, double
12/// * ValueType::String, std::string
13/// * ValueType::Utf8, ydb::Utf8
14/// * ValueType::Timestamp, std::chrono::system_clock::time_point
15/// * ValueType::Uuid, boost::uuids::uuid
16///
17/// Available composite types:
18/// * Optional, std::optional for primitive types, List and Struct
19/// * List, std::vector and non-map containers
20/// * Struct, @ref ydb::kStructMemberNames "C++ structs"
21
22#include <userver/ydb/io/insert_row.hpp>
23#include <userver/ydb/io/list.hpp>
24#include <userver/ydb/io/primitives.hpp>
25#include <userver/ydb/io/structs.hpp>