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 35c0f87 commit 530918eCopy full SHA for 530918e
src/iceberg/schema_util.cc
@@ -36,7 +36,8 @@ namespace {
36
37
Status ValidateSchemaEvolution(const Type& expected_type, const Type& source_type) {
38
if (expected_type.is_nested()) {
39
- // Nested type requires identical type ids.
+ // Nested type requires identical type ids but their sub-fields are checked
40
+ // recursively and individually.
41
if (source_type.type_id() != expected_type.type_id()) {
42
return NotSupported("Cannot read {} from {}", expected_type, source_type);
43
}
0 commit comments