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