From eb56b2d9dfb45fc9757a97bda19d5c5611f8bbab Mon Sep 17 00:00:00 2001 From: Sam Shepherd Date: Wed, 5 Sep 2012 13:21:41 -0500 Subject: [PATCH] Exposed pools variable. --- lib/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/index.js b/lib/index.js index 0d8d4674e..f815a2026 100644 --- a/lib/index.js +++ b/lib/index.js @@ -14,6 +14,7 @@ var PG = function(clientConstructor) { this.Client = clientConstructor; this.Connection = require(__dirname + '/connection'); this.defaults = defaults; + this.pools = pools; }; util.inherits(PG, EventEmitter);