blob: ea3274ccf5d0ac7206e190468c81182a2572dbfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <util/generic/string.h>
#include <util/generic/vector.h>
namespace NSQLComplete {
TString FormatKeywords(const TVector<TString>& seq);
bool IsPlain(TStringBuf content);
TString Quoted(TString content);
TString Unquoted(TString content);
} // namespace NSQLComplete
|