Michael P. Jung

Results 214 comments of Michael P. Jung

This is related to the following issues: - #167 - #299 - #245 Right now deadpool is completely passive. Unless you call `Pool::get` it doesn't perform any background tasks whatsoever....

Oh, and regarding your questions... **Q:** Is this feature something you'd consider adding to deadpool? **A:** Yes. **Q:** Are there any potential drawbacks or implementation challenges you foresee? **A:** Not...

When I remove the `PRIMARY KEY` constraint from the `fqdn` column and run the code I end up with the following DB contents: ``` $ sqlite3 example.db "SELECT * FROM...

Here are two unit tests: ```rust #[tokio::test] async fn test_reuse_statement_insert() { let database = libsql::Builder::new_local(":memory:").build().await.unwrap(); let conn = database.connect().unwrap(); conn.execute_batch("CREATE TABLE thing (name TEXT NOT NULL PRIMARY KEY)").await.unwrap(); let stmt...