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:
47
47
Known incompatibilities:
48
48
49
49
* ` connection.processID ` not implemented
50
+ * ` pool._pulseQueue ` not implemented
51
+ * ` pool._remove ` not implemented
50
52
51
53
Please submit PR if you require additional compatibility.
52
54
Original file line number Diff line number Diff line change @@ -123,6 +123,14 @@ export const createBridge = (postgres: typeof Postgres) => {
123
123
return compatibleConnection ;
124
124
}
125
125
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
+
126
134
public get idleCount ( ) {
127
135
return this . pool . available ;
128
136
}
You can’t perform that action at this time.
0 commit comments