Skip to content

Commit c228eb6

Browse files
committed
Revert attempt to fix python binding issue
1 parent 12aa489 commit c228eb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bindings/python/tests/test_datafusion_table_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import datafusion
2828

2929
assert (
30-
datafusion.__version__ >= "47"
30+
datafusion.__version__ >= "45"
3131
) # iceberg table provider only works for datafusion >= 45
3232

3333

crates/integrations/datafusion/src/table/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub struct IcebergTableProvider {
5252
/// A reference-counted arrow `Schema`.
5353
schema: ArrowSchemaRef,
5454
/// The catalog that the table belongs to.
55-
catalog: Option<Arc<dyn Catalog + Send + Sync + 'static>>,
55+
catalog: Option<Arc<dyn Catalog>>,
5656
}
5757

5858
impl IcebergTableProvider {

0 commit comments

Comments
 (0)