आप statement_timeout
सेटअप कर सकते हैं कोड>
क्लाइंट में:
const { Client } = require('pg')
const client = new Client({
statement_timeout: 10000
})
या पूल में:
const { Pool } = require('pg')
const pool = new Pool({
statement_timeout: 10000
})