Skip to content

Commit eda007c

Browse files
pavelvelikhovPavel Velikhov
and
Pavel Velikhov
authored
Removed alias stripping from CBO (#15373)
Co-authored-by: Pavel Velikhov <[email protected]>
1 parent 833e60a commit eda007c

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

ydb/library/yql/dq/opt/dq_opt_join_hypergraph.h

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,6 @@ class TJoinHypergraph {
4949
, IsReversed(false)
5050
{
5151
Y_ASSERT(LeftJoinKeys.size() == RightJoinKeys.size());
52-
RemoveAttributeAliases();
53-
}
54-
55-
void RemoveAttributeAliases() {
56-
for (auto& leftKey : LeftJoinKeys) {
57-
if (auto idx = leftKey.AttributeName.find('.'); idx != TString::npos) {
58-
leftKey.AttributeName = leftKey.AttributeName.substr(idx + 1);
59-
}
60-
}
61-
62-
for (auto& rightKey : RightJoinKeys) {
63-
if (auto idx = rightKey.AttributeName.find('.'); idx != TString::npos) {
64-
rightKey.AttributeName = rightKey.AttributeName.substr(idx + 1);
65-
}
66-
}
6752
}
6853

6954
inline bool IsSimple() const {

0 commit comments

Comments
 (0)