diff options
author | udovichenko-r <rvu@ydb.tech> | 2023-08-11 20:06:14 +0300 |
---|---|---|
committer | udovichenko-r <rvu@ydb.tech> | 2023-08-11 20:47:00 +0300 |
commit | 2c33817e7cc1c83790f08d26db271359cd7ad99b (patch) | |
tree | 1f677bf8739c95aed9c6216d0c606d8223e76a65 | |
parent | ed7f718ae5ca564f4c3314973207564270e15ed7 (diff) | |
download | ydb-2c33817e7cc1c83790f08d26db271359cd7ad99b.tar.gz |
[yt provider] Fix `YtMerge! has different input/output native YT types` error
YQL-16290
-rw-r--r-- | ydb/library/yql/providers/yt/provider/yql_yt_table.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ydb/library/yql/providers/yt/provider/yql_yt_table.cpp b/ydb/library/yql/providers/yt/provider/yql_yt_table.cpp index aac4d392eaa..b42a182343d 100644 --- a/ydb/library/yql/providers/yt/provider/yql_yt_table.cpp +++ b/ydb/library/yql/providers/yt/provider/yql_yt_table.cpp @@ -2913,13 +2913,6 @@ const NCommon::TStructMemberMapper& TYtPathInfo::GetColumnMapper() { for (auto& c: *Columns->GetColumns()) { filterColumns.insert(c.Name); } - for (auto& c: Table->RowSpec->SortMembers) { - auto column = c; - if (auto r = renames.find(c); r != renames.cend()) { - column = r->second; - } - filterColumns.insert(column); - } } } if (useAllColumns && renames.empty()) { |