We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12aa489 commit c228eb6Copy full SHA for c228eb6
bindings/python/tests/test_datafusion_table_provider.py
@@ -27,7 +27,7 @@
27
import datafusion
28
29
assert (
30
- datafusion.__version__ >= "47"
+ datafusion.__version__ >= "45"
31
) # iceberg table provider only works for datafusion >= 45
32
33
crates/integrations/datafusion/src/table/mod.rs
@@ -52,7 +52,7 @@ pub struct IcebergTableProvider {
52
/// A reference-counted arrow `Schema`.
53
schema: ArrowSchemaRef,
54
/// The catalog that the table belongs to.
55
- catalog: Option<Arc<dyn Catalog + Send + Sync + 'static>>,
+ catalog: Option<Arc<dyn Catalog>>,
56
}
57
58
impl IcebergTableProvider {
0 commit comments