vertica
vertica copied to clipboard
Ruby adapter for Vertica databases
ThreadError Attempt to unlock a mutex which is not locked lib/vertica/connection.rb:298:in `unlock'
``` ThreadError Attempt to unlock a mutex which is not locked lib/vertica/connection.rb:298:in `unlock' lib/vertica/connection.rb:298:in `process_message' lib/vertica/connection.rb:398:in `startup_connection' lib/vertica/connection.rb:446:in `boot_connection' lib/vertica/connection.rb:329:in `run_in_mutex' lib/vertica/connection.rb:146:in `query' ``` https://github.com/wvanbergen/vertica/blob/200d317e64130ce333c7c44c6362618858ccd3cc/lib/vertica/connection.rb#L298 `@mutex.unlock if @mutex.locked?` correctly or...
Added support for running prepared statements. I was able to achieve this by imitating how the vertica jdbc driver does this. I did my best to write documentation in the...