Whenever I do `connection.commit(function (error) { ... });` it crashes the process with signal SIGSEGV. I've made a workaround for this issue by doing this ``` js connection.commit = function (callbackFunction) { this.execute("COMMIT", [], callbackFunction); }); ```