diff options
| author | vitya-smirnov <[email protected]> | 2025-10-07 09:34:39 +0300 | 
|---|---|---|
| committer | vitya-smirnov <[email protected]> | 2025-10-07 09:52:14 +0300 | 
| commit | babe7533f18c11be1f8a195ed2324d2d9a89436a (patch) | |
| tree | 45b7627141bf5a52b45a3d61fd1fbdd564bb8dd9 /yql/essentials/sql/v1/complete/name/service/docs/documentation.h | |
| parent | 8fe7cfe254fde2772477a8933a163b5f303716b4 (diff) | |
YQL-20086 sql/v1
commit_hash:55bc611cdaa0d8a0fc3c4c7708ed9f17cc4976cf
Diffstat (limited to 'yql/essentials/sql/v1/complete/name/service/docs/documentation.h')
| -rw-r--r-- | yql/essentials/sql/v1/complete/name/service/docs/documentation.h | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/yql/essentials/sql/v1/complete/name/service/docs/documentation.h b/yql/essentials/sql/v1/complete/name/service/docs/documentation.h index 1ba1319e195..e557ae2e2cd 100644 --- a/yql/essentials/sql/v1/complete/name/service/docs/documentation.h +++ b/yql/essentials/sql/v1/complete/name/service/docs/documentation.h @@ -5,18 +5,18 @@  namespace NSQLComplete { -    class IDocumentation: public TThrRefBase { -    public: -        using TPtr = TIntrusivePtr<IDocumentation>; +class IDocumentation: public TThrRefBase { +public: +    using TPtr = TIntrusivePtr<IDocumentation>; -        virtual TMaybe<TString> Lookup(TStringBuf name) const = 0; -    }; +    virtual TMaybe<TString> Lookup(TStringBuf name) const = 0; +}; -    using TDocByNormalizedNameMap = THashMap<TString, TString>; +using TDocByNormalizedNameMap = THashMap<TString, TString>; -    IDocumentation::TPtr MakeStaticDocumentation(TDocByNormalizedNameMap docs); +IDocumentation::TPtr MakeStaticDocumentation(TDocByNormalizedNameMap docs); -    IDocumentation::TPtr MakeReservedDocumentation( -        IDocumentation::TPtr primary, IDocumentation::TPtr fallback); +IDocumentation::TPtr MakeReservedDocumentation( +    IDocumentation::TPtr primary, IDocumentation::TPtr fallback);  } // namespace NSQLComplete | 
