partition_version: remove _schema from partition_entry::operator<<

operator<< accepts a schema& and a partition_entry&. But since the latter
now contains a reference to its schema inside, the former is redundant.
Remove it.
This commit is contained in:
Michał Chojnowski
2023-03-01 05:03:47 +01:00
parent f6e11c95e2
commit caaf0bd6bf
5 changed files with 8 additions and 9 deletions

View File

@@ -1369,6 +1369,6 @@ std::ostream& operator<<(std::ostream& out, const cache_entry& e) {
return out << "{cache_entry: " << e.position()
<< ", cont=" << e.continuous()
<< ", dummy=" << e.is_dummy_entry()
<< ", " << partition_entry::printer(*e.schema(), e.partition())
<< ", " << partition_entry::printer(e.partition())
<< "}";
}