File tree Expand file tree Collapse file tree 5 files changed +9
-10
lines changed
Expand file tree Collapse file tree 5 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusi
4343datafusion-physical-plan = { git = " https://github.com/polygon-io/arrow-datafusion" , rev = " 1c92803" }
4444datafusion-sql = { git = " https://github.com/polygon-io/arrow-datafusion" , rev = " 1c92803" }
4545futures = " 0.3"
46- itertools = " 0.14 "
46+ itertools = " 0.13 "
4747log = " 0.4"
48- object_store = " 0.12 "
49- ordered-float = " 5.0 .0"
48+ object_store = " 0.11 "
49+ ordered-float = " 4.6 .0"
5050
5151[dev-dependencies ]
5252anyhow = " 1.0.95"
Original file line number Diff line number Diff line change @@ -110,14 +110,14 @@ impl TableFunctionImpl for FileDependenciesUdtf {
110110 "mv_dependencies: table '{table_name} is not a materialized view. (Materialized TableProviders must be registered using register_materialized" ) ,
111111 ) ) ?;
112112
113- Ok ( Arc :: new ( ViewTable :: new (
113+ Ok ( Arc :: new ( ViewTable :: try_new (
114114 mv_dependencies_plan (
115115 mv,
116116 self . row_metadata_registry . as_ref ( ) ,
117117 & self . config_options ,
118118 ) ?,
119119 None ,
120- ) ) )
120+ ) ? ) )
121121 }
122122}
123123
@@ -224,7 +224,7 @@ impl TableFunctionImpl for StaleFilesUdtf {
224224 ] ) ?
225225 . build ( ) ?;
226226
227- Ok ( Arc :: new ( ViewTable :: new ( logical_plan, None ) ) )
227+ Ok ( Arc :: new ( ViewTable :: try_new ( logical_plan, None ) ? ) )
228228 }
229229}
230230
Original file line number Diff line number Diff line change @@ -702,7 +702,7 @@ impl FileMetadataBuilder {
702702 . append_value ( format ! ( "{store_url}{}" , meta. location) ) ;
703703 self . last_modified
704704 . append_option ( meta. last_modified . timestamp_nanos_opt ( ) ) ;
705- self . size . append_value ( meta. size ) ; // this is not lossy assuming we're on a 64-bit platform
705+ self . size . append_value ( meta. size as u64 ) ; // this is not lossy assuming we're on a 64-bit platform
706706 }
707707
708708 fn finish ( mut self ) -> Result < RecordBatch > {
@@ -763,7 +763,7 @@ impl FileMetadataProvider for DefaultFileMetadataProvider {
763763 let prefix = url. prefix ( ) . clone ( ) ;
764764
765765 let list = match is_dir {
766- true => store. list ( Some ( & prefix) ) ,
766+ true => stream :: iter ( store. list ( Some ( & prefix) ) . collect :: < Vec < _ > > ( ) . await ) . boxed ( ) ,
767767 false => futures:: stream:: once ( async move { store. head ( & prefix) . await } ) . boxed ( ) ,
768768 } ;
769769
Original file line number Diff line number Diff line change @@ -457,7 +457,6 @@ impl DisplayAs for OneOfExec {
457457 )
458458 )
459459 }
460- DisplayFormatType :: TreeRender => Ok ( ( ) ) ,
461460 }
462461 }
463462}
Original file line number Diff line number Diff line change @@ -1194,7 +1194,7 @@ mod test {
11941194 TestCase {
11951195 name: "naked table scan with pushed down filters" ,
11961196 base: "SELECT column1 FROM t1 WHERE column2 <= 3" ,
1197- query: "SELECT FROM t1 WHERE column2 <= 3" ,
1197+ query: "SELECT column1 FROM t1 WHERE column2 <= 3" ,
11981198 } ,
11991199 ] ;
12001200
You can’t perform that action at this time.
0 commit comments