We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89d1eba + c645fc5 commit 50dba92Copy full SHA for 50dba92
src/v/iceberg/values.h
@@ -108,6 +108,8 @@ using value = std::variant<
108
std::unique_ptr<map_value>>;
109
110
struct struct_value {
111
+ // The order of these fields must align with the corresponding struct type
112
+ // as defined in the schema, see `iceberg::struct_type`.
113
chunked_vector<std::optional<value>> fields;
114
};
115
bool operator==(const struct_value&, const struct_value&);
0 commit comments