This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch refactor-test in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit a19cf979d3935df404d1e3174ac26c93ebb8d64d Author: Xuanwo <[email protected]> AuthorDate: Tue Oct 17 20:26:18 2023 +0800 Fix mysql Signed-off-by: Xuanwo <[email protected]> --- core/src/types/operator/builder.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/types/operator/builder.rs b/core/src/types/operator/builder.rs index 12839a9aa..bfa1cfe07 100644 --- a/core/src/types/operator/builder.rs +++ b/core/src/types/operator/builder.rs @@ -197,6 +197,8 @@ impl Operator { Scheme::MiniMoka => Self::from_map::<services::MiniMoka>(map)?.finish(), #[cfg(feature = "services-moka")] Scheme::Moka => Self::from_map::<services::Moka>(map)?.finish(), + #[cfg(feature = "services-mysql")] + Scheme::Mysql => Self::from_map::<services::Mysql>(map)?.finish(), #[cfg(feature = "services-obs")] Scheme::Obs => Self::from_map::<services::Obs>(map)?.finish(), #[cfg(feature = "services-onedrive")]
