2019-01-25 18:35:16 +00:00
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "TestStats.h"
|
|
|
|
#include "TestStopConditions.h"
|
|
|
|
#include <Common/InterruptListener.h>
|
2019-01-28 11:20:44 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2019-03-22 12:08:30 +00:00
|
|
|
#include <Core/Settings.h>
|
2019-01-25 18:35:16 +00:00
|
|
|
#include <Client/Connection.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
void executeQuery(
|
|
|
|
Connection & connection,
|
|
|
|
const std::string & query,
|
|
|
|
TestStats & statistics,
|
|
|
|
TestStopConditions & stop_conditions,
|
2019-01-28 11:20:44 +00:00
|
|
|
InterruptListener & interrupt_listener,
|
2019-02-12 09:13:31 +00:00
|
|
|
Context & context,
|
|
|
|
const Settings & settings);
|
2019-01-25 18:35:16 +00:00
|
|
|
}
|