File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
catalogs/iceberg-file-catalog/src
iceberg-rust-spec/src/spec Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -506,7 +506,7 @@ impl Catalog for FileCatalog {
506506 _identifier : Identifier ,
507507 _metadata_location : & str ,
508508 ) -> Result < Table , IcebergError > {
509- unimplemented ! ( "Register table for file catalog" )
509+ unimplemented ! ( )
510510 }
511511}
512512
Original file line number Diff line number Diff line change @@ -670,7 +670,7 @@ impl Value {
670670 precision : 38 ,
671671 scale : dec. scale ( ) ,
672672 } ) ,
673- _ => unimplemented ! ( "Datatype for value" ) ,
673+ _ => unimplemented ! ( ) ,
674674 }
675675 }
676676
@@ -698,7 +698,7 @@ impl Value {
698698 Value :: String ( any) => Box :: new ( any) ,
699699 Value :: UUID ( any) => Box :: new ( any) ,
700700 Value :: Decimal ( any) => Box :: new ( any) ,
701- _ => unimplemented ! ( "Value conversion to any" ) ,
701+ _ => unimplemented ! ( ) ,
702702 }
703703 }
704704
Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ pub fn apply_table_updates(
423423 if i32:: from ( metadata. format_version ) == format_version {
424424 return Ok ( ( ) ) ;
425425 }
426- unimplemented ! ( "Table format upgrade" ) ;
426+ unimplemented ! ( ) ;
427427 }
428428 TableUpdate :: AssignUuid { uuid } => {
429429 metadata. table_uuid = Uuid :: parse_str ( & uuid) ?;
You can’t perform that action at this time.
0 commit comments