| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <DataStreams/IBlockStream_fwd.h> |
| 4 | |
| 5 | #include <string> |
| 6 | |
| 7 | namespace DB |
| 8 | { |
| 9 | |
| 10 | /// Using in MySQLDictionarySource and XDBCDictionarySource after processing invalidate_query. |
| 11 | std::string readInvalidateQuery(IBlockInputStream & block_input_stream); |
| 12 | |
| 13 | } |
| 14 |