mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
19 lines
424 B
C++
19 lines
424 B
C++
#pragma once
|
|
#include <string>
|
|
#include "TestStats.h"
|
|
#include "TestStopConditions.h"
|
|
#include <Common/InterruptListener.h>
|
|
#include <Interpreters/Context.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);
|
|
}
|