Skip to content

Commit 0a059a6

Browse files
committed
Attempt to fix the binding failure with setting underlying catalog safe
1 parent 0845fe9 commit 0a059a6

File tree

1 file changed

+1
-1
lines changed
  • crates/integrations/datafusion/src/table

1 file changed

+1
-1
lines changed

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>>,
55+
catalog: Option<Arc<dyn Catalog + Send + Sync + 'static>>,
5656
}
5757

5858
impl IcebergTableProvider {

0 commit comments

Comments
 (0)