mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Update iostream_debug_helpers.h
This commit is contained in:
parent
4cda5b4470
commit
0fbda791b5
@ -37,7 +37,8 @@ std::ostream & operator<<(std::ostream & stream, const DB::Connection::Packet &
|
||||
|
||||
#include <Common/PODArray.h>
|
||||
template <typename T, size_t INITIAL_SIZE, typename TAllocator, size_t pad_right_>
|
||||
std::ostream & operator<<(std::ostream & stream, const DB::PODArray<T, INITIAL_SIZE, TAllocator, pad_right_> & what) {
|
||||
std::ostream & operator<<(std::ostream & stream, const DB::PODArray<T, INITIAL_SIZE, TAllocator, pad_right_> & what)
|
||||
{
|
||||
stream << "PODArray(size = " << what.size() << ", capacity = " << what.capacity() << ")";
|
||||
dumpContainer(stream, what);
|
||||
return stream;
|
||||
|
Loading…
Reference in New Issue
Block a user