Merge pull request #729 from wallymathieu/patch-1

In order for the command line execution to finish
This commit is contained in:
Brian C 2015-02-21 09:00:25 -04:00
commit 8c10612668

View File

@ -34,6 +34,7 @@ pg.connect(conString, function(err, client, done) {
}
console.log(result.rows[0].number);
//output: 1
client.end();
});
});
```