From fac2bd72b4b31ec3238292caf8fb2a8aaa6d6c4a Mon Sep 17 00:00:00 2001 From: max42 <max42@yandex-team.com> Date: Fri, 30 Jun 2023 03:37:03 +0300 Subject: YT-19324: move YT provider to ydb/library/yql This commit is formed by the following script: https://paste.yandex-team.ru/6f92e4b8-efc5-4d34-948b-15ee2accd7e7/text. This commit has zero effect on all projects that depend on YQL. The summary of changes: - `yql/providers/yt -> ydb/library/yql/providers/yt `- the whole implementation of YT provider is moved into YDB code base for further export as a part of YT YQL plugin shared library; - `yql/providers/stat/{expr_nodes,uploader} -> ydb/library/yql/providers/stat/{expr_nodes,uploader}` - a small interface without implementation and the description of stat expr nodes; - `yql/core/extract_predicate/ut -> ydb/library/yql/core/extract_predicate/ut`; - `yql/core/{ut,ut_common} -> ydb/library/yql/core/{ut,ut_common}`; - `yql/core` is gone; - `yql/library/url_preprocessing -> ydb/library/yql/core/url_preprocessing`. **NB**: all new targets inside `ydb/` are under `IF (NOT CMAKE_EXPORT)` clause which disables them from open-source cmake generation and ya make build. They will be enabled in the subsequent commits. --- library/cpp/skiff/skiff-inl.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 library/cpp/skiff/skiff-inl.h (limited to 'library/cpp/skiff/skiff-inl.h') diff --git a/library/cpp/skiff/skiff-inl.h b/library/cpp/skiff/skiff-inl.h new file mode 100644 index 0000000000..a3f68a9374 --- /dev/null +++ b/library/cpp/skiff/skiff-inl.h @@ -0,0 +1,39 @@ +#pragma once + +#ifndef SKIFF_H +#error "Direct inclusion of this file is not allowed, include skiff.h" +// For the sake of sane code completion. +#include "skiff.h" +#endif +#undef SKIFF_H + +namespace NSkiff { + +//////////////////////////////////////////////////////////////////////////////// + +template <EWireType wireType> +constexpr auto TUnderlyingIntegerType<wireType>::F() { + if constexpr (wireType == EWireType::Int8) { + return i8{}; + } else if constexpr (wireType == EWireType::Int16) { + return i16{}; + } else if constexpr (wireType == EWireType::Int32) { + return i32{}; + } else if constexpr (wireType == EWireType::Int64) { + return i64{}; + } else if constexpr (wireType == EWireType::Uint8) { + return ui8{}; + } else if constexpr (wireType == EWireType::Uint16) { + return ui16{}; + } else if constexpr (wireType == EWireType::Uint32) { + return ui32{}; + } else if constexpr (wireType == EWireType::Uint64) { + return ui64{}; + } else { + static_assert(wireType == EWireType::Int8, "expected integer wire type"); + } +} + +//////////////////////////////////////////////////////////////////////////////// + +} // namespace NSkiff -- cgit v1.2.3