blob: e022ac444399fd0e555a3815f595bb88b8485bcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include <ydb/public/sdk/cpp/include/ydb-cpp-sdk/client/value/value.h>
#include <map>
#include <optional>
namespace NYdb {
namespace NConsoleClient {
class TYqlParamParser {
public:
static std::optional<std::map<std::string, TType>> GetParamTypes(const TString& queryText);
};
} // namespace NConsoleClient
} // namespace NYdb
|