mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
21 lines
490 B
C++
21 lines
490 B
C++
#pragma once
|
|
#include <string>
|
|
#include "TestStats.h"
|
|
#include "TestStopConditions.h"
|
|
#include <Common/InterruptListener.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Interpreters/Settings.h>
|
|
#include <Client/Connection.h>
|
|
|
|
namespace DB
|
|
{
|
|
void executeQuery(
|
|
Connection & connection,
|
|
const std::string & query,
|
|
TestStats & statistics,
|
|
TestStopConditions & stop_conditions,
|
|
InterruptListener & interrupt_listener,
|
|
Context & context,
|
|
const Settings & settings);
|
|
}
|