mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
14 lines
263 B
C++
14 lines
263 B
C++
#pragma once
|
|
|
|
#include <DataStreams/IBlockStream_fwd.h>
|
|
|
|
#include <string>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Using in MySQLDictionarySource and XDBCDictionarySource after processing invalidate_query.
|
|
std::string readInvalidateQuery(IBlockInputStream & block_input_stream);
|
|
|
|
}
|