mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
22 lines
798 B
C++
22 lines
798 B
C++
|
#pragma once
|
||
|
#include <iostream>
|
||
|
#include <common/iostream_debug_helpers.h>
|
||
|
|
||
|
namespace DB { class IBlockInputStream; }
|
||
|
std::ostream & operator<<(std::ostream & stream, const DB::IBlockInputStream & what);
|
||
|
|
||
|
namespace DB { class NameAndTypePair; }
|
||
|
std::ostream & operator<<(std::ostream & stream, const DB::NameAndTypePair & what);
|
||
|
|
||
|
namespace DB { class Field; }
|
||
|
std::ostream & operator<<(std::ostream & stream, const DB::Field & what);
|
||
|
|
||
|
namespace DB { class IDataType; }
|
||
|
std::ostream & operator<<(std::ostream & stream, const DB::IDataType & what);
|
||
|
|
||
|
namespace DB { class IStorage; }
|
||
|
std::ostream & operator<<(std::ostream & stream, const DB::IStorage & what);
|
||
|
|
||
|
namespace DB { class TableStructureReadLock; }
|
||
|
std::ostream & operator<<(std::ostream & stream, const DB::TableStructureReadLock & what);
|