JuliaDatabases / ODBC.jl

An ODBC interface for the Julia programming language
https://odbc.juliadatabases.org/stable
Other
106 stars 62 forks source link

Exponential backoff in PR #361 is implemented incorrectly #384

Open xitology opened 4 weeks ago

xitology commented 4 weeks ago

PR #361 apparently tries to implement exponential backoff while waiting for the query result. However, the implementation appears to be incorrect: the counter variable is always negative, sleep() is never called and the code is effectively a busy loop.