mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
c26b3bdef1
* Fix split shared build * Fix build without system odbc libs * Move dbms/src/Common/iostream_debug_helpers.h -> libs/libcommon/include/common/iostream_debug_helpers.h * Fix build with libiodbc
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
#include <Client/Connection.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class IBlockInputStream;
|
|
std::ostream & operator<<(std::ostream & stream, const IBlockInputStream & what);
|
|
|
|
class Field;
|
|
std::ostream & operator<<(std::ostream & stream, const Field & what);
|
|
|
|
struct NameAndTypePair;
|
|
std::ostream & operator<<(std::ostream & stream, const NameAndTypePair & what);
|
|
|
|
class IDataType;
|
|
std::ostream & operator<<(std::ostream & stream, const IDataType & what);
|
|
|
|
class IStorage;
|
|
std::ostream & operator<<(std::ostream & stream, const IStorage & what);
|
|
|
|
class TableStructureReadLock;
|
|
std::ostream & operator<<(std::ostream & stream, const TableStructureReadLock & what);
|
|
|
|
class IFunctionBase;
|
|
std::ostream & operator<<(std::ostream & stream, const IFunctionBase & what);
|
|
|
|
class Block;
|
|
std::ostream & operator<<(std::ostream & stream, const Block & what);
|
|
|
|
struct ColumnWithTypeAndName;
|
|
std::ostream & operator<<(std::ostream & stream, const ColumnWithTypeAndName & what);
|
|
|
|
class IColumn;
|
|
std::ostream & operator<<(std::ostream & stream, const IColumn & what);
|
|
|
|
class IAST;
|
|
std::ostream & operator<<(std::ostream & stream, const IAST & what);
|
|
|
|
std::ostream & operator<<(std::ostream & stream, const Connection::Packet & what);
|
|
|
|
}
|
|
|
|
/// some operator<< should be declared before operator<<(... std::shared_ptr<>)
|
|
#include <common/iostream_debug_helpers.h>
|