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 494a08c3f9c10b9315cc51d39d0e53608270b25b Author: Xuanwo <[email protected]> AuthorDate: Tue Oct 17 20:27:03 2023 +0800 Fix sqlite Signed-off-by: Xuanwo <[email protected]> --- core/src/types/operator/builder.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/types/operator/builder.rs b/core/src/types/operator/builder.rs index bfa1cfe07..6f90566ce 100644 --- a/core/src/types/operator/builder.rs +++ b/core/src/types/operator/builder.rs @@ -203,6 +203,8 @@ impl Operator { Scheme::Obs => Self::from_map::<services::Obs>(map)?.finish(), #[cfg(feature = "services-onedrive")] Scheme::Onedrive => Self::from_map::<services::Onedrive>(map)?.finish(), + #[cfg(feature = "services-postgresql")] + Scheme::Postgresql => Self::from_map::<services::Postgresql>(map)?.finish(), #[cfg(feature = "services-gdrive")] Scheme::Gdrive => Self::from_map::<services::Gdrive>(map)?.finish(), #[cfg(feature = "services-oss")] @@ -219,6 +221,8 @@ impl Operator { Scheme::Sftp => Self::from_map::<services::Sftp>(map)?.finish(), #[cfg(feature = "services-sled")] Scheme::Sled => Self::from_map::<services::Sled>(map)?.finish(), + #[cfg(feature = "services-sqlite")] + Scheme::Sqlite => Self::from_map::<services::Sqlite>(map)?.finish(), #[cfg(feature = "services-supabase")] Scheme::Supabase => Self::from_map::<services::Supabase>(map)?.finish(), #[cfg(feature = "services-vercel-artifacts")]
