We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e2fc9 commit cdb2321Copy full SHA for cdb2321
1 file changed
crates/integrations/datafusion/src/physical_plan/commit.rs
@@ -57,14 +57,17 @@ impl IcebergCommitExec {
57
input: Arc<dyn ExecutionPlan>,
58
schema: ArrowSchemaRef,
59
) -> Self {
60
- let plan_properties = Self::compute_properties(schema.clone());
+
61
+ let count_schema = Self::make_count_schema();
62
63
+ let plan_properties = Self::compute_properties(Arc::clone(&count_schema));
64
65
Self {
66
table,
67
catalog,
68
input,
69
schema,
- count_schema: Self::make_count_schema(),
70
+ count_schema,
71
plan_properties,
72
}
73
0 commit comments