File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ Supported features:
4747Known incompatibilities:
4848
4949* ` connection.processID ` not implemented
50+ * ` pool._pulseQueue ` not implemented
51+ * ` pool._remove ` not implemented
5052
5153Please submit PR if you require additional compatibility.
5254
Original file line number Diff line number Diff line change @@ -123,6 +123,14 @@ export const createBridge = (postgres: typeof Postgres) => {
123123 return compatibleConnection ;
124124 }
125125
126+ public _pulseQueue ( ) {
127+ // TODO implement logic equivalent to https://github.com/brianc/node-postgres/blob/master/packages/pg-pool/index.js#L109-L152
128+ }
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
132+ }
133+
126134 public get idleCount ( ) {
127135 return this . pool . available ;
128136 }
You can’t perform that action at this time.
0 commit comments