aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/interface/serialize.cpp
diff options
context:
space:
mode:
authorwhatsername <whatsername@yandex-team.com>2024-03-21 12:38:52 +0300
committerwhatsername <whatsername@yandex-team.com>2024-03-21 12:49:42 +0300
commitf2d8ab4111c1f5dba066eb9df8a2ecd86cd8c192 (patch)
tree73ac9be80fb07e711b489a5ee6bcf2fcdda0f667 /yt/cpp/mapreduce/interface/serialize.cpp
parent345654a416ff6d02ba04db39de7e1965b47aa844 (diff)
downloadydb-f2d8ab4111c1f5dba066eb9df8a2ecd86cd8c192.tar.gz
YT-18458: Introduce wide types into mapreduce interface
7ae047ef618cc44d7dd3e817dc27f2336d9e38c3
Diffstat (limited to 'yt/cpp/mapreduce/interface/serialize.cpp')
-rw-r--r--yt/cpp/mapreduce/interface/serialize.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/yt/cpp/mapreduce/interface/serialize.cpp b/yt/cpp/mapreduce/interface/serialize.cpp
index 18cfaaa9b7..9be114b45e 100644
--- a/yt/cpp/mapreduce/interface/serialize.cpp
+++ b/yt/cpp/mapreduce/interface/serialize.cpp
@@ -129,6 +129,11 @@ void Deserialize(EValueType& valueType, const TNode& node)
{"interval", VT_INTERVAL},
{"float", VT_FLOAT},
{"json", VT_JSON},
+
+ {"date32", VT_DATE32},
+ {"datetime64", VT_DATETIME64},
+ {"timestamp64", VT_TIMESTAMP64},
+ {"interval64", VT_INTERVAL64},
};
auto it = str2ValueType.find(nodeStr);