Alex Anderson 83a0e3e90e
eslint: enable rule: @typescript-eslint/no-unused-vars (#3247)
When enabling this rule, it's recommended to also *disable* the standard `no-unused-vars` rule.  Although `no-unused-vars` is not currently enabled, it seems helpful to explicitly disable it here.

See: https://typescript-eslint.io/rules/no-unused-vars/

Co-authored-by: alxndrsn <alxndrsn>
2024-06-18 15:55:17 -05:00

38 lines
868 B
TypeScript

import helper from './helper'
import concat from 'concat-stream'
import JSONStream from 'JSONStream'
import QueryStream from '../src'
import { Transform } from 'stream'
class PauseStream extends Transform {
constructor() {
super({ objectMode: true })
}
_transform(chunk, encoding, callback): void {
this.push(chunk, encoding)
setTimeout(callback, 1)
}
}
helper('pauses', function (client) {
it('pauses', function (done) {
this.timeout(5000)
const stream = new QueryStream('SELECT * FROM generate_series(0, $1) num', [200], {
batchSize: 2,
highWaterMark: 2,
})
const query = client.query(stream)
const pauser = new PauseStream()
query
.pipe(JSONStream.stringify())
.pipe(pauser)
.pipe(
concat(function (json) {
JSON.parse(json)
done()
})
)
})
})