We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c441d2 commit fb1b587Copy full SHA for fb1b587
packages/pg-cursor/test/index.js
@@ -89,7 +89,9 @@ describe('cursor', function () {
89
const cursor = this.pgCursor(text, values)
90
let count = 0
91
const read = function () {
92
+ let start = Date.now()
93
cursor.read(100, function (err, rows) {
94
+ console.log('read in', Date.now() - start)
95
if (err) return done(err)
96
if (!rows.length) {
97
assert.strictEqual(count, 100001)
0 commit comments