From a6cca5a5d7d038ec5ed58482f3f0293c6e1027e6 Mon Sep 17 00:00:00 2001 From: KyJah Keys Date: Thu, 1 Feb 2024 14:21:17 -0500 Subject: [PATCH] made it possible to clone a delta table --- crates/core/src/table/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/core/src/table/mod.rs b/crates/core/src/table/mod.rs index ad260295ba..11b5a3a8f6 100644 --- a/crates/core/src/table/mod.rs +++ b/crates/core/src/table/mod.rs @@ -190,6 +190,7 @@ pub enum PeekCommit { } /// In memory representation of a Delta Table +#[derive(Clone)] pub struct DeltaTable { /// The state of the table as of the most recent loaded Delta log entry. pub state: Option,