File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ Known incompatibilities:
48
48
49
49
* ` connection.processID ` not implemented
50
50
* ` pool._pulseQueue ` not implemented
51
- * ` pool._remove ` not implemented
52
51
53
52
Please submit PR if you require additional compatibility.
54
53
Original file line number Diff line number Diff line change @@ -127,8 +127,8 @@ export const createBridge = (postgres: typeof Postgres) => {
127
127
// TODO implement logic equivalent to https://github.com/brianc/node-postgres/blob/master/packages/pg-pool/index.js#L109-L152
128
128
}
129
129
130
- public _remove ( ) {
131
- // TODO implement logic equivalent to https://github.com/brianc/node-postgres/blob/master/packages/pg-pool/index.js#L154-L164
130
+ public async _remove ( client : { end : ( ) => Promise < void > , } ) {
131
+ await client . end ( ) ;
132
132
}
133
133
134
134
public get idleCount ( ) {
You can’t perform that action at this time.
0 commit comments