From b5a245ee5a654d1132bc683fe816117e7881dccd Mon Sep 17 00:00:00 2001 From: Frank McSherry Date: Sun, 12 Nov 2023 15:00:17 -0500 Subject: [PATCH] remove premature update container --- src/trace/implementations/ord.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/trace/implementations/ord.rs b/src/trace/implementations/ord.rs index c29f3df52..989c274af 100644 --- a/src/trace/implementations/ord.rs +++ b/src/trace/implementations/ord.rs @@ -70,8 +70,6 @@ pub trait Layout { type KeyOffset: OrdOffset; /// Offsets to use from vals into updates. type ValOffset: OrdOffset; - /// Container for updates themselves. - type UpdateContainer: BatchContainer+Deref+RetainFrom; /// Container for update keys. type KeyContainer: BatchContainer::Key> @@ -93,7 +91,6 @@ impl Layout for Vector { type Target = U; type KeyOffset = O; type ValOffset = O; - type UpdateContainer = Vec; type KeyContainer = Vec; type ValContainer = Vec; } @@ -111,7 +108,6 @@ where type Target = U; type KeyOffset = O; type ValOffset = O; - type UpdateContainer = Vec; type KeyContainer = TimelyStack; type ValContainer = TimelyStack; }