File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -662,7 +662,7 @@ mod _const_schema {
662
662
) ) ,
663
663
] ;
664
664
let schema = Schema :: builder ( ) . with_fields ( fields) . build ( ) ?;
665
- schema_to_avro_schema ( "manifest " , & schema)
665
+ schema_to_avro_schema ( "manifest_entry " , & schema)
666
666
}
667
667
668
668
pub ( super ) fn manifest_schema_v1 ( partition_type : StructType ) -> Result < AvroSchema , Error > {
@@ -696,7 +696,7 @@ mod _const_schema {
696
696
) ) ,
697
697
] ;
698
698
let schema = Schema :: builder ( ) . with_fields ( fields) . build ( ) . unwrap ( ) ;
699
- schema_to_avro_schema ( "manifest " , & schema)
699
+ schema_to_avro_schema ( "manifest_entry " , & schema)
700
700
}
701
701
}
702
702
Original file line number Diff line number Diff line change @@ -495,10 +495,10 @@ mod _const_schema {
495
495
} ;
496
496
497
497
pub ( super ) static MANIFEST_LIST_AVRO_SCHEMA_V1 : Lazy < AvroSchema > =
498
- Lazy :: new ( || schema_to_avro_schema ( "manifest_list " , & V1_SCHEMA ) . unwrap ( ) ) ;
498
+ Lazy :: new ( || schema_to_avro_schema ( "manifest_file " , & V1_SCHEMA ) . unwrap ( ) ) ;
499
499
500
500
pub ( super ) static MANIFEST_LIST_AVRO_SCHEMA_V2 : Lazy < AvroSchema > =
501
- Lazy :: new ( || schema_to_avro_schema ( "manifest_list " , & V2_SCHEMA ) . unwrap ( ) ) ;
501
+ Lazy :: new ( || schema_to_avro_schema ( "manifest_file " , & V2_SCHEMA ) . unwrap ( ) ) ;
502
502
}
503
503
504
504
/// Entry in a manifest list.
You can’t perform that action at this time.
0 commit comments