ClickHouse/dbms/src/Common/iostream_debug_helpers.cpp

82 lines
2.6 KiB
C++
Raw Normal View History

#include "iostream_debug_helpers.h"
#include <iostream>
#include <Core/Block.h>
2017-04-28 19:50:42 +00:00
#include <Core/ColumnWithTypeAndName.h>
#include <Core/Field.h>
#include <Core/NamesAndTypes.h>
#include <DataStreams/IBlockInputStream.h>
#include <DataTypes/IDataType.h>
#include <Functions/IFunction.h>
#include <Storages/IStorage.h>
std::ostream & operator<<(std::ostream & stream, const DB::IBlockInputStream & what)
{
stream << "IBlockInputStream(id = " << what.getID() << ", name = " << what.getName() << ")";
//what.dumpTree(stream); // todo: set const
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::Field & what)
{
stream << "Field(type = " << what.getTypeName() << ")";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::NameAndTypePair & what)
{
stream << "NameAndTypePair(name = " << what.name << ", type = " << what.type << ")";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::IDataType & what)
{
stream << "IDataType(name = " << what.getName() << ", default = " << what.getDefault() << ", isNullable = " << what.isNullable()
<< ", isNumeric = " << what.isNumeric() << ", behavesAsNumber = " << what.behavesAsNumber() << ")";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::IStorage & what)
{
2017-04-28 21:17:52 +00:00
stream << "IStorage(name = " << what.getName() << ", tableName = " << what.getTableName() << ") {"
2017-05-12 21:28:22 +00:00
<< what.getColumnsList().toString()
2017-04-28 21:17:52 +00:00
<< "}";
// isRemote supportsSampling supportsFinal supportsPrewhere supportsParallelReplicas
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::TableStructureReadLock & what)
{
stream << "TableStructureReadLock()";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::IFunction & what)
{
stream << "IFunction(name = " << what.getName() << ", variadic = " << what.isVariadic() << ", args = " << what.getNumberOfArguments()
<< ")";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::Block & what)
{
2017-04-28 21:17:52 +00:00
stream << "Block("
2017-05-12 21:28:22 +00:00
<< "size = " << what.getColumns().size()
2017-04-28 21:17:52 +00:00
<< ")";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::ColumnWithTypeAndName & what)
{
stream << "ColumnWithTypeAndName(name = " << what.name << ", type = " << what.type << ", column = " << what.column << ")";
return stream;
}
std::ostream & operator<<(std::ostream & stream, const DB::IColumn & what)
{
stream << "IColumn(name = " << what.getName()
// TODO: maybe many flags here
<< ")";
return stream;
}