We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da0f73 commit c57bcb9Copy full SHA for c57bcb9
sqlx-postgres/src/lib.rs
@@ -26,6 +26,12 @@ pub mod types;
26
mod value;
27
28
#[cfg(feature = "any")]
29
+// We are hiding the any module with its AnyConnectionBackend trait
30
+// so that IDEs don't show it in the autocompletion list
31
+// and end users don't accidentally use it. This can result in
32
+// nested transactions not behaving as expected.
33
+// For more information, see https://github.com/launchbadge/sqlx/pull/3254#issuecomment-2144043823
34
+#[doc(hidden)]
35
pub mod any;
36
37
#[cfg(feature = "migrate")]
0 commit comments