diff options
| author | vvvv <[email protected]> | 2025-10-10 16:31:33 +0300 |
|---|---|---|
| committer | vvvv <[email protected]> | 2025-10-10 17:08:12 +0300 |
| commit | 98f2ee1a36436bada54371eef656138d98dd40e0 (patch) | |
| tree | 3bb7cf502482258623b4d94721714612bd16c4de /yql/essentials/core/layers/layers.h | |
| parent | c62509aef170f46a8d9464bafa8b83bc293ebb63 (diff) | |
YQL-20086 invert flag
commit_hash:a6b640bc576263b62884a0b4187ba79c893e13d9
Diffstat (limited to 'yql/essentials/core/layers/layers.h')
| -rw-r--r-- | yql/essentials/core/layers/layers.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/yql/essentials/core/layers/layers.h b/yql/essentials/core/layers/layers.h index 121fb7c2d79..d1e91771459 100644 --- a/yql/essentials/core/layers/layers.h +++ b/yql/essentials/core/layers/layers.h @@ -8,7 +8,7 @@ namespace NYql::NLayers { using TLayerOrder = TVector<TString>; -class ILayersRegistry : public TThrRefBase { +class ILayersRegistry: public TThrRefBase { public: virtual TMaybe<TVector<TKey>> ResolveLogicalLayers(const TVector<TLayerOrder>& orders, TExprContext& ctx) const = 0; virtual TMaybe<TLocations> ResolveLayers(const TVector<TKey>& order, const TString& system, const TString& cluster, TExprContext& ctx) const = 0; @@ -20,9 +20,8 @@ public: }; using ILayersRegistryPtr = TIntrusivePtr<ILayersRegistry>; - // remove duplicates when cluster and system is fixed TMaybe<TVector<TLocations>> RemoveDuplicates(const TVector<std::pair<TKey, const TLayerInfo*>>& layers, TStringBuf system, const TString& cluster, TExprContext& ctx); ILayersRegistryPtr MakeLayersRegistry(const THashMap<TString, IRemoteLayerProviderPtr>& remoteProviders, const THashMap<TString, ILayersIntegrationPtr>& integrations); -} +} // namespace NYql::NLayers |
