ArunGust

Results 4 comments of ArunGust

if you have tokio vesion conflict with other libraries, you could try this ``` let rt = Runtime::new().unwrap(); rt.block_on(async { // call your dependency let pool = Pool::new(database_url); let mut...

No, didnt work . I still get same error ``` `GetHandle` is not a future the trait `futures::Future` is not implemented for `GetHandle`rustcE0277 future.rs(99, 5): required by `futures::Future::poll` clickhouse_rs::pool::Pool pub...

How about this ? let res = client.execute( format!( r#" BEGIN TRAN BEGIN TRY INSERT INTO ARCHIVE SELECT * FROM XXX WHERE id = '##{}' and status = 'completed' and...