Bạn có thể thiết lập statement_timeout
trong khách hàng:
const { Client } = require('pg')
const client = new Client({
statement_timeout: 10000
})
hoặc trong hồ bơi:
const { Pool } = require('pg')
const pool = new Pool({
statement_timeout: 10000
})