aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <rvu@ydb.tech>2023-08-11 20:06:14 +0300
committerudovichenko-r <rvu@ydb.tech>2023-08-11 20:47:00 +0300
commit2c33817e7cc1c83790f08d26db271359cd7ad99b (patch)
tree1f677bf8739c95aed9c6216d0c606d8223e76a65
parented7f718ae5ca564f4c3314973207564270e15ed7 (diff)
downloadydb-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.cpp7
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()) {