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///
16/// Available composite types:
17/// * Optional, std::optional for primitive types
18/// * List, std::vector and non-map containers
19/// * Struct, @ref ydb::kStructMemberNames "C++ structs"
20
21#include <userver/ydb/io/insert_row.hpp>
22#include <userver/ydb/io/list.hpp>
23#include <userver/ydb/io/primitives.hpp>
24#include <userver/ydb/io/structs.hpp>