diff options
author | vvvv <[email protected]> | 2025-03-20 22:15:41 +0300 |
---|---|---|
committer | vvvv <[email protected]> | 2025-03-20 22:30:37 +0300 |
commit | b0562c0e5a08f64cb9b64c37259f9c220dba4e3e (patch) | |
tree | 7a5d33185f5cc80ee74ba0ff3b2fd5c4747d8929 /yql/essentials/sql/v1/source.cpp | |
parent | c10c049689d0bec259b1b566f13615e103ea521b (diff) |
YQL-19746 fix
commit_hash:49e5e33ed38f7fd623cef80d2765d464a353ff9c
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); } |