diff --git a/lib/dialects/postgres/connection-manager.js b/lib/dialects/postgres/connection-manager.js index 9baf87e56b1a..f29a39e9a00c 100644 --- a/lib/dialects/postgres/connection-manager.js +++ b/lib/dialects/postgres/connection-manager.js @@ -77,7 +77,9 @@ class ConnectionManager extends AbstractConnectionManager { 'binary', // This should help with backends incorrectly considering idle clients to be dead and prematurely disconnecting them. // this feature has been added in pg module v6.0.0, check pg/CHANGELOG.md - 'keepAlive' + 'keepAlive', + // Times out queries after a set time in milliseconds. Added in pg v7.3 + 'statement_timeout' ])); }