diff --git a/include/storage/shared_datatype.hpp b/include/storage/shared_datatype.hpp index 49a70e07a..263e0e309 100644 --- a/include/storage/shared_datatype.hpp +++ b/include/storage/shared_datatype.hpp @@ -172,20 +172,6 @@ struct DataLayout return ptr; } - friend std::ostream &operator<<(std::ostream &os, const DataLayout &layout) - { - os << "Memory layout: " << std::endl; - os << " Total size: " << layout.GetSizeOfLayout() << std::endl; - - for (unsigned bid = 0; bid < BlockID::NUM_BLOCKS; bid++) - { - os << " " << block_id_to_name[bid] - << " offset: " << layout.GetBlockOffset(BlockID(bid)) - << " size: " << layout.GetBlockSize(BlockID(bid)) << std::endl; - } - - return os; - } }; enum SharedDataType