mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
Merge branch 'master' of https://github.com/brianc/node-postgres
This commit is contained in:
commit
844831fb8e
@ -113,7 +113,7 @@ var NativeQuery = function(text, values, callback) {
|
||||
this.name = text.name;
|
||||
if(typeof values === 'function') {
|
||||
this.callback = values;
|
||||
} else if(typeof values !== 'undefined') {
|
||||
} else if(values) {
|
||||
this.values = values;
|
||||
this.callback = callback;
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{ "name": "pg",
|
||||
"version": "0.5.4",
|
||||
"version": "0.5.5",
|
||||
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
||||
"keywords" : ["postgres", "pg", "libpq", "postgre", "database", "rdbms"],
|
||||
"homepage": "http://github.com/brianc/node-postgres",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user