@@ -26,14 +26,14 @@ use uuid::Uuid;
26
26
27
27
use super :: get_field_id;
28
28
use crate :: spec:: {
29
- visit_struct_with_partner, Literal , Map , PartnerAccessor , PrimitiveType ,
30
- SchemaWithPartnerVisitor , Struct , StructType ,
29
+ visit_struct_with_partner, ListType , Literal , Map , MapType , NestedField , PartnerAccessor ,
30
+ PrimitiveType , SchemaWithPartnerVisitor , Struct , StructType ,
31
31
} ;
32
32
use crate :: { Error , ErrorKind , Result } ;
33
33
34
- struct ArrowArrayConverter ;
34
+ struct ArrowArrayToIcebergStructConverter ;
35
35
36
- impl SchemaWithPartnerVisitor < ArrayRef > for ArrowArrayConverter {
36
+ impl SchemaWithPartnerVisitor < ArrayRef > for ArrowArrayToIcebergStructConverter {
37
37
type T = Vec < Option < Literal > > ;
38
38
39
39
fn schema (
@@ -56,7 +56,9 @@ impl SchemaWithPartnerVisitor<ArrayRef> for ArrowArrayConverter {
56
56
return Err ( Error :: new (
57
57
ErrorKind :: DataInvalid ,
58
58
"The field is required but has null value" ,
59
- ) ) ;
59
+ )
60
+ . with_context ( "field_id" , field. id . to_string ( ) )
61
+ . with_context ( "field_name" , & field. name ) ) ;
60
62
}
61
63
Ok ( value)
62
64
}
@@ -68,11 +70,13 @@ impl SchemaWithPartnerVisitor<ArrayRef> for ArrowArrayConverter {
68
70
results : Vec < Vec < Option < Literal > > > ,
69
71
) -> Result < Vec < Option < Literal > > > {
70
72
let row_len = results. first ( ) . map ( |column| column. len ( ) ) . unwrap_or ( 0 ) ;
71
- if results. iter ( ) . any ( |column| column . len ( ) != row_len) {
73
+ if let Some ( col ) = results. iter ( ) . find ( |col| col . len ( ) != row_len) {
72
74
return Err ( Error :: new (
73
75
ErrorKind :: DataInvalid ,
74
76
"The struct columns have different row length" ,
75
- ) ) ;
77
+ )
78
+ . with_context ( "first col length" , row_len. to_string ( ) )
79
+ . with_context ( "actual col length" , col. len ( ) . to_string ( ) ) ) ;
76
80
}
77
81
78
82
let mut struct_literals = Vec :: with_capacity ( row_len) ;
@@ -98,7 +102,7 @@ impl SchemaWithPartnerVisitor<ArrayRef> for ArrowArrayConverter {
98
102
99
103
fn list (
100
104
& mut self ,
101
- list : & crate :: spec :: ListType ,
105
+ list : & ListType ,
102
106
array : & ArrayRef ,
103
107
elements : Vec < Option < Literal > > ,
104
108
) -> Result < Vec < Option < Literal > > > {
@@ -164,7 +168,7 @@ impl SchemaWithPartnerVisitor<ArrayRef> for ArrowArrayConverter {
164
168
165
169
fn map (
166
170
& mut self ,
167
- _map : & crate :: spec :: MapType ,
171
+ _map : & MapType ,
168
172
partner : & ArrayRef ,
169
173
key_values : Vec < Option < Literal > > ,
170
174
values : Vec < Option < Literal > > ,
@@ -437,8 +441,7 @@ impl PartnerAccessor<ArrayRef> for ArrowArrayAccessor {
437
441
fn field_partner < ' a > (
438
442
& self ,
439
443
struct_partner : & ' a ArrayRef ,
440
- field_id : i32 ,
441
- _field_name : & str ,
444
+ field : & NestedField ,
442
445
) -> Result < & ' a ArrayRef > {
443
446
let struct_array = struct_partner
444
447
. as_any ( )
@@ -452,15 +455,15 @@ impl PartnerAccessor<ArrayRef> for ArrowArrayAccessor {
452
455
let field_pos = struct_array
453
456
. fields ( )
454
457
. iter ( )
455
- . position ( |field | {
456
- get_field_id ( field )
457
- . map ( |id| id == field_id )
458
+ . position ( |arrow_field | {
459
+ get_field_id ( arrow_field )
460
+ . map ( |id| id == field . id )
458
461
. unwrap_or ( false )
459
462
} )
460
463
. ok_or_else ( || {
461
464
Error :: new (
462
465
ErrorKind :: DataInvalid ,
463
- format ! ( "Field id {} not found in struct array" , field_id ) ,
466
+ format ! ( "Field id {} not found in struct array" , field . id ) ,
464
467
)
465
468
} ) ?;
466
469
Ok ( struct_array. column ( field_pos) )
@@ -541,7 +544,7 @@ pub fn arrow_struct_to_literal(
541
544
visit_struct_with_partner (
542
545
ty,
543
546
struct_array,
544
- & mut ArrowArrayConverter ,
547
+ & mut ArrowArrayToIcebergStructConverter ,
545
548
& ArrowArrayAccessor ,
546
549
)
547
550
}
0 commit comments