File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ jobs:
132132 runs-on : ubuntu-latest
133133 steps :
134134 - uses : actions/checkout@v3
135- - uses : EmbarkStudios/cargo-deny-action@v1
135+ - uses : EmbarkStudios/cargo-deny-action@v2
136136 with :
137137 command : check license
138138
Original file line number Diff line number Diff line change 2525license = " Apache-2.0"
2626description = " Materialized Views & Query Rewriting in DataFusion"
2727keywords = [" arrow" , " arrow-rs" , " datafusion" ]
28- rust-version = " 1.80 "
28+ rust-version = " 1.85.1 "
2929
3030[dependencies ]
3131arrow = " 55.2.0"
3232arrow-schema = " 55.2.0"
3333async-trait = " 0.1"
3434dashmap = " 6"
35- datafusion = " 49"
36- datafusion-common = " 49"
37- datafusion-expr = " 49"
38- datafusion-functions = " 49"
39- datafusion-functions-aggregate = " 49"
40- datafusion-optimizer = " 49"
41- datafusion-physical-expr = " 49"
42- datafusion-physical-plan = " 49"
43- datafusion-sql = " 49"
35+ datafusion = " 49.0.2 "
36+ datafusion-common = " 49.0.2 "
37+ datafusion-expr = " 49.0.2 "
38+ datafusion-functions = " 49.0.2 "
39+ datafusion-functions-aggregate = " 49.0.2 "
40+ datafusion-optimizer = " 49.0.2 "
41+ datafusion-physical-expr = " 49.0.2 "
42+ datafusion-physical-plan = " 49.0.2 "
43+ datafusion-sql = " 49.0.2 "
4444futures = " 0.3"
4545itertools = " 0.14"
4646log = " 0.4"
Original file line number Diff line number Diff line change @@ -504,7 +504,7 @@ impl TableProvider for MaterializedListingTable {
504504 self . inner . get_table_definition ( )
505505 }
506506
507- fn get_logical_plan ( & self ) -> Option < Cow < LogicalPlan > > {
507+ fn get_logical_plan ( & self ) -> Option < Cow < ' _ , LogicalPlan > > {
508508 // We _could_ return the LogicalPlan here,
509509 // but it will cause this table to be treated like a regular view
510510 // and the materialized results will not be used.
You can’t perform that action at this time.
0 commit comments