diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-01-26 19:49:18 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-01-26 20:02:23 +0300 |
commit | 27b1811df443f5a3d16e2ae0f1744f39b348109d (patch) | |
tree | d32eadbe20b6050cc48bf72bc0c8f7f448891ca7 /yt | |
parent | 7686d090e4600e50d1ed8e3df64b539705e879fb (diff) | |
download | ydb-27b1811df443f5a3d16e2ae0f1744f39b348109d.tar.gz |
Intermediate changes
Diffstat (limited to 'yt')
-rw-r--r-- | yt/yt/client/table_client/helpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/table_client/helpers.cpp b/yt/yt/client/table_client/helpers.cpp index 9e33a43949..c19e217ad9 100644 --- a/yt/yt/client/table_client/helpers.cpp +++ b/yt/yt/client/table_client/helpers.cpp @@ -562,7 +562,7 @@ void ToUnversionedValue( void FromUnversionedValue(NYson::TYsonStringBuf* value, TUnversionedValue unversionedValue) { - if (unversionedValue.Type != EValueType::Any) { + if (!IsAnyOrComposite(unversionedValue.Type)) { THROW_ERROR_EXCEPTION("Cannot parse YSON string from %Qlv", unversionedValue.Type); } |