1 | #pragma once |
---|---|
2 | #include <string> |
3 | #include "TestStats.h" |
4 | #include "TestStopConditions.h" |
5 | #include <Common/InterruptListener.h> |
6 | #include <Interpreters/Context.h> |
7 | #include <Core/Settings.h> |
8 | #include <Client/Connection.h> |
9 | |
10 | namespace DB |
11 | { |
12 | void executeQuery( |
13 | Connection & connection, |
14 | const std::string & query, |
15 | TestStats & statistics, |
16 | TestStopConditions & stop_conditions, |
17 | InterruptListener & interrupt_listener, |
18 | Context & context, |
19 | const Settings & settings); |
20 | } |
21 |