We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b2a934 commit fc7dcefCopy full SHA for fc7dcef
src/iceberg/table_metadata.cc
@@ -76,6 +76,8 @@ Result<std::shared_ptr<SortOrder>> TableMetadata::SortOrder() const {
76
return *iter;
77
}
78
79
+namespace {
80
+
81
template <typename T>
82
bool SharedPtrVectorEquals(const std::vector<std::shared_ptr<T>>& lhs,
83
const std::vector<std::shared_ptr<T>>& rhs) {
@@ -108,6 +110,8 @@ bool SnapshotRefEquals(
108
110
return true;
109
111
112
113
+} // namespace
114
115
bool operator==(const TableMetadata& lhs, const TableMetadata& rhs) {
116
return lhs.format_version == rhs.format_version && lhs.table_uuid == rhs.table_uuid &&
117
lhs.location == rhs.location &&
0 commit comments