From 477ae400e599d725d2b6155730c602250889ef96 Mon Sep 17 00:00:00 2001 From: WenyXu Date: Sun, 28 Apr 2024 06:39:17 +0000 Subject: [PATCH] chore: move memory catalog to `testing` feature gate --- src/catalog/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/catalog/src/lib.rs b/src/catalog/src/lib.rs index 5a98a0eb0032..7703cdd898ca 100644 --- a/src/catalog/src/lib.rs +++ b/src/catalog/src/lib.rs @@ -30,6 +30,7 @@ use crate::error::Result; pub mod error; pub mod information_schema; pub mod kvbackend; +#[cfg(any(test, feature = "testing"))] pub mod memory; mod metrics; pub mod table_source;