File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -95,10 +95,3 @@ Arro3 = "Arro3"
9595AKS = " AKS"
9696# to avoid using 'type' as a field name.
9797tpe = " tpe"
98-
99- # temp patch to https://github.com/apache/datafusion/pull/16822
100- # before merge to branch-49
101- [patch .crates-io ]
102- datafusion = { git = " https://github.com/apache/datafusion.git" , rev = " fb02f4ec1d17f268ca7be9757fac121213c9bdc9" }
103- datafusion-ffi = { git = " https://github.com/apache/datafusion.git" , rev = " fb02f4ec1d17f268ca7be9757fac121213c9bdc9" }
104- datafusion-proto = { git = " https://github.com/apache/datafusion.git" , rev = " fb02f4ec1d17f268ca7be9757fac121213c9bdc9" }
Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ impl LazyBatchGenerator for ArrowStreamBatchGenerator {
7878 match stream_reader. next ( ) {
7979 Some ( Ok ( record_batch) ) => Ok ( Some ( record_batch) ) ,
8080 Some ( Err ( err) ) => Err ( deltalake:: datafusion:: error:: DataFusionError :: ArrowError (
81- err, None ,
81+ Box :: new ( err) ,
82+ None ,
8283 ) ) ,
8384 None => Ok ( None ) , // End of stream
8485 }
You can’t perform that action at this time.
0 commit comments