File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -200,10 +200,10 @@ unexpected_cfgs = { level = "warn", check-cfg = [
200200unused_qualifications = " deny"
201201
202202
203- # TEMPORARY: override arrow-avro for testing
203+ # FIXME - TEMPORARY override arrow-avro for testing
204204[patch .crates-io ]
205- arrow = { git = " https://github.com/apache/arrow-rs.git" , rev = " b444ea7127ebc8136564bc9af036353d0c90991b " }
206- arrow-avro = { git = " https://github.com/apache/arrow-rs.git" , rev = " b444ea7127ebc8136564bc9af036353d0c90991b " }
205+ arrow = { git = " https://github.com/apache/arrow-rs.git" , rev = " d49f017fe1c6712ba32e2222c6f031278b588ca5 " }
206+ arrow-avro = { git = " https://github.com/apache/arrow-rs.git" , rev = " d49f017fe1c6712ba32e2222c6f031278b588ca5 " }
207207
208208# --------------------
209209# Compilation Profiles
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ log = { workspace = true }
7171object_store = { workspace = true , optional = true }
7272parquet = { workspace = true , optional = true , default-features = true }
7373paste = " 1.0.15"
74- pyo3 = { version = " 0.26.0" , optional = true }
74+ pyo3 = { version = " 0.26.0" , optional = true } # fixme - revert
7575recursive = { workspace = true , optional = true }
7676sqlparser = { workspace = true , optional = true }
7777tokio = { workspace = true }
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ impl AvroSource {
5252 }
5353
5454 fn open < R : std:: io:: Read > ( & self , reader : R ) -> Result < Reader < R > > {
55- let avro_schema = AvroSchema :: try_from ( self . schema . expect ( "Schema must set before open" ) . as_ref ( ) ) ?;
55+ let avro_schema = AvroSchema :: try_from (
56+ self . schema . expect ( "Schema must set before open" ) . as_ref ( ) ,
57+ ) ?;
5658 ReaderBuilder :: new ( )
5759 . with_reader_schema ( avro_schema)
5860 . with_batch_size ( self . batch_size . expect ( "Batch size must set before open" ) )
You can’t perform that action at this time.
0 commit comments