Results 6 comments of LZ

I found that the reason is the transaction is never completed, which is why commit() is never invoked. I'm using this with Spring webflux. It looks like `doOnComplete` is never...

Thank you!. Does that means I will not run into the connection closed error with the nonBlocking pool when I query DB after 8 hours of idle since it will...

Thank you again! Just to confirm the 3rd question, if I were to use a blocking pool on top of a Hikari pool, I just need to pass a HikariDataSource...

I'm having the same issue. But I don't want to use this workaround as it will show value ` 0.1` when I hover on it, but I want it to...

Here is my test results ``` let dynamicFilters = [ transactionSql`id=${id}`, transactionSql`name=${name}`, ]; await transactionSql` SELECT * FROM table WHERE ${ dynamicFilters.join(' AND ') } ` ``` The generated sql...

> the filter fragments are being generated as promises instead of SQL query fragments. maybe await before the fragments can help? ``` let dynamicFilters = [ await transactionSql`id=${id}`, await transactionSql`name=${name}`,...