Add ref/unref noop to native client

This commit is contained in:
Brian M. Carlson 2021-07-27 11:48:13 -05:00
parent 0da7882f45
commit b9ab8f05ad

View File

@ -285,6 +285,9 @@ Client.prototype.cancel = function (query) {
}
}
Client.prototype.ref = function () {}
Client.prototype.unref = function () {}
Client.prototype.setTypeParser = function (oid, format, parseFn) {
return this._types.setTypeParser(oid, format, parseFn)
}