File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 22
33## 0.30.1 - TBD
44
5+ ### Enhancements
6+ - Changed ` timeseries.get_range_to_file() ` to return a concrete type instead of an impl
7+ trait type
8+
59### Bug fixes
610- Removed unused ` S3 ` and ` Disk ` variants from ` Delivery ` enum
711
Original file line number Diff line number Diff line change 22
33use std:: { num:: NonZeroU64 , path:: PathBuf } ;
44
5+ use async_compression:: tokio:: bufread:: ZstdDecoder ;
56use dbn:: {
67 decode:: DbnMetadata ,
78 encode:: { AsyncDbnEncoder , AsyncEncodeRecordRef } ,
@@ -78,7 +79,7 @@ impl TimeseriesClient<'_> {
7879 pub async fn get_range_to_file (
7980 & mut self ,
8081 params : & GetRangeToFileParams ,
81- ) -> crate :: Result < AsyncDbnDecoder < impl AsyncReadExt > > {
82+ ) -> crate :: Result < AsyncDbnDecoder < ZstdDecoder < BufReader < File > > > > {
8283 let reader = self
8384 . get_range_impl (
8485 & params. dataset ,
You can’t perform that action at this time.
0 commit comments