blob: 86c2a0f36a65c9da385fd93612729924d202d8a5 (
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 << "}";
}
|