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.h | |
parent | c10c049689d0bec259b1b566f13615e103ea521b (diff) |
YQL-19746 fix
commit_hash:49e5e33ed38f7fd623cef80d2765d464a353ff9c
Diffstat (limited to 'yql/essentials/sql/v1/source.h')
-rw-r--r-- | yql/essentials/sql/v1/source.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yql/essentials/sql/v1/source.h b/yql/essentials/sql/v1/source.h index f89be5dd982..6eb040f2e42 100644 --- a/yql/essentials/sql/v1/source.h +++ b/yql/essentials/sql/v1/source.h @@ -105,7 +105,7 @@ namespace NSQLTranslationV1 { virtual TMaybe<TString> FindColumnMistype(const TString& name) const; virtual bool InitFilters(TContext& ctx); - void AddDependentSource(ISource* usedSource); + void AddDependentSource(TSourcePtr usedSource); bool IsAlias(EExprSeat exprSeat, const TString& label) const; bool IsExprAlias(const TString& label) const; bool IsExprSeat(EExprSeat exprSeat, EExprType type = EExprType::WithExpression) const; @@ -144,7 +144,7 @@ namespace NSQLTranslationV1 { TLegacyHoppingWindowSpecPtr LegacyHoppingWindowSpec; TNodePtr SessionWindow; TNodePtr HoppingWindow; - TVector<ISource*> UsedSources; + TVector<TSourcePtr> UsedSources; TString FlattenMode; bool FlattenColumns = false; THashMap<TString, ui32> GenIndexes; |