We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea772e commit 3cbb73fCopy full SHA for 3cbb73f
src/iceberg/catalog/rest/types.cc
@@ -52,24 +52,20 @@ bool CreateTableRequest::operator==(const CreateTableRequest& other) const {
52
if (write_order && *write_order != *other.write_order) {
53
return false;
54
}
55
-
56
return true;
57
58
59
bool LoadTableResult::operator==(const LoadTableResult& other) const {
60
- // Compare primitive fields
61
if (metadata_location != other.metadata_location || config != other.config) {
62
63
64
65
- // Compare metadata (required) - deep comparison
66
if (!metadata != !other.metadata) {
67
- return false; // One is null, the other isn't
+ return false;
68
69
if (metadata && *metadata != *other.metadata) {
70
71
72
73
74
75
0 commit comments