File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -187,15 +187,13 @@ function Postgres(url, options) {
187
187
188
188
function getConnection ( reserve ) {
189
189
const connection = -- max >= 0 ? createConnection ( options ) : connections . shift ( )
190
- ! options . fifo && ! reserve && connection && connections . push ( connection )
190
+ ! reserve && connection && connections . push ( connection )
191
191
return connection
192
192
}
193
193
194
194
function createConnection ( options ) {
195
195
const connection = Connection ( options )
196
196
all . push ( connection )
197
- fetchArrayTypes ( connection )
198
-
199
197
return connection
200
198
}
201
199
@@ -464,7 +462,6 @@ function parseOptions(uri = {}, options) {
464
462
user : o . user || o . username || auth [ 0 ] || env . PGUSERNAME || os . userInfo ( ) . username ,
465
463
pass : o . pass || o . password || auth [ 1 ] || env . PGPASSWORD || '' ,
466
464
max : o . max || url . query . max || Math . max ( 1 , os . cpus ( ) . length ) ,
467
- fifo : o . fifo || url . query . fifo || false ,
468
465
types : o . types || { } ,
469
466
ssl : o . ssl || url . ssl || false ,
470
467
timeout : o . timeout ,
You can’t perform that action at this time.
0 commit comments