diff options
author | Alexander Smirnov <alex@ydb.tech> | 2025-03-21 00:51:44 +0000 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2025-03-21 00:51:44 +0000 |
commit | f3bd49d0fec44e1330640066b138d65a64cb10fc (patch) | |
tree | 1e31f490331c7f5d7f75bb75cd2dfe4562241fa5 /yql/essentials/sql/v1/source.cpp | |
parent | d7289771993b7b05333228533aced64bbda25301 (diff) | |
parent | 28c1921440871833b2fcba9e890319d36e5edd96 (diff) | |
download | ydb-f3bd49d0fec44e1330640066b138d65a64cb10fc.tar.gz |
Merge branch 'rightlib' into merge-libs-250321-0050
Diffstat (limited to 'yql/essentials/sql/v1/source.cpp')
-rw-r--r-- | yql/essentials/sql/v1/source.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/sql/v1/source.cpp b/yql/essentials/sql/v1/source.cpp index c2fb13b103b..28afe17d9c3 100644 --- a/yql/essentials/sql/v1/source.cpp +++ b/yql/essentials/sql/v1/source.cpp @@ -649,7 +649,7 @@ TMaybe<TString> ISource::FindColumnMistype(const TString& name) const { return result ? result : FindMistypeIn(ExprAliases, name); } -void ISource::AddDependentSource(ISource* usedSource) { +void ISource::AddDependentSource(TSourcePtr usedSource) { UsedSources.push_back(usedSource); } |