mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
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);
|
|
|
|
}
|