We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7369b1 commit 82b6ecdCopy full SHA for 82b6ecd
datacake-sqlite/src/lib.rs
@@ -109,6 +109,9 @@ impl SqliteStorage {
109
/// # async fn main() {
110
/// let storage = SqliteStorage::open("./data.db").await.expect("Create database");
111
/// # drop(storage);
112
+ /// # let _ = std::fs::remove_file("./data.db");
113
+ /// # let _ = std::fs::remove_file("./data.db-shm");
114
+ /// # let _ = std::fs::remove_file("./data.db-wal");
115
/// # }
116
/// ```
117
pub async fn open<P: AsRef<Path>>(path: P) -> Result<Self, rusqlite::Error> {
0 commit comments