2017-04-26 02:50:03 +00:00
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
|
2017-04-28 18:57:26 +00:00
|
|
|
|
2017-04-26 02:50:03 +00:00
|
|
|
namespace DB { class IBlockInputStream; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::IBlockInputStream & what);
|
|
|
|
|
|
|
|
namespace DB { class Field; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::Field & what);
|
|
|
|
|
2017-04-28 18:57:26 +00:00
|
|
|
namespace DB { struct NameAndTypePair; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::NameAndTypePair & what);
|
|
|
|
|
2017-04-26 02:50:03 +00:00
|
|
|
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);
|
2017-04-26 15:14:28 +00:00
|
|
|
|
2017-04-28 18:57:26 +00:00
|
|
|
namespace DB { class IFunction; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::IFunction & what);
|
|
|
|
|
|
|
|
namespace DB { class Block; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::Block & what);
|
|
|
|
|
|
|
|
namespace DB { struct ColumnWithTypeAndName; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::ColumnWithTypeAndName & what);
|
|
|
|
|
|
|
|
namespace DB { struct IColumn; }
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const DB::IColumn & what);
|
|
|
|
|
|
|
|
|
2017-04-26 15:14:28 +00:00
|
|
|
/// some operator<< should be declared before operator<<(... std::shared_ptr<>)
|
|
|
|
#include <common/iostream_debug_helpers.h>
|