summaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql/v1/ide/completion/name/object/schema.cpp
blob: d31565e1cee1be0aa1fef202d8d646eb507d4647 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "schema.h"

namespace NSQLComplete {

THashSet<TString> TFolderEntry::KnownTypes = {
    TFolderEntry::Folder,
    TFolderEntry::Table,
};

} // namespace NSQLComplete

template <>
void Out<NSQLComplete::TFolderEntry>(IOutputStream& out, const NSQLComplete::TFolderEntry& value) {
    out << "{" << value.Type << ", " << value.Name << "}";
}