knex/clients/server/postgres.js

291 lines
9.4 KiB
JavaScript
Raw Normal View History

// postgresql
// -------
// All of the "when.js" promise components needed in this module.
var when = require('when');
var nodefn = require('when/node/function');
// Other dependencies, including the `pg` library,
// which needs to be added as a dependency to the project
// using this database.
var _ = require('underscore');
var pg = require('pg');
2013-03-12 11:52:08 -04:00
// All other local project modules needed in this scope.
var ServerBase = require('./base').ServerBase;
var baseGrammar = require('../base/grammar').BaseGrammar;
var baseSchemaGrammar = require('../base/schemagrammar').BaseSchemaGrammar;
var Helpers = require('../../lib/helpers').Helpers;
2013-04-28 20:58:38 -04:00
// Constructor for the PostgreSQL Client
exports.Client = ServerBase.extend({
dialect: 'postgresql',
2013-09-13 10:24:39 -04:00
initialize: function() {},
runQuery: function(connection, sql, bindings, builder) {
if (!connection) throw new Error('No database connection exists for the query');
var questionCount = 0;
sql = sql.replace(/\?/g, function() {
questionCount++;
return '$' + questionCount;
});
if (builder && builder.flags.options) sql = _.extend({text: sql}, builder.flags.options);
return nodefn.call(connection.query.bind(connection), sql, bindings);
},
// Get a raw connection, called by the `pool` whenever a new
// connection needs to be added to the pool.
getRawConnection: function(callback) {
2013-07-17 09:53:00 -04:00
var instance = this;
var connection = new pg.Client(this.connectionSettings);
return nodefn.call(connection.connect.bind(connection)).tap(function() {
if (!instance.version) return instance.checkVersion(connection);
}).yield(connection);
2013-07-17 09:53:00 -04:00
},
// In PostgreSQL, we need to do a version check to do some feature
// checking on the database.
checkVersion: function(connection) {
2013-07-17 09:53:00 -04:00
var instance = this;
this.runQuery(connection, 'select version();').then(function(resp) {
2013-07-17 09:53:00 -04:00
instance.version = /^PostgreSQL (.*?) /.exec(resp.rows[0].version)[1];
});
}
});
// Extends the standard sql grammar.
var grammar = exports.grammar = _.defaults({
2013-03-12 12:58:33 -04:00
// The keyword identifier wrapper format.
2013-03-12 11:52:08 -04:00
wrapValue: function(value) {
return (value !== '*' ? Helpers.format('"%s"', value) : "*");
2013-03-12 11:52:08 -04:00
},
// Compiles a truncate query.
2013-05-03 00:20:51 -04:00
compileTruncate: function(qb) {
2013-05-04 20:06:39 -04:00
return 'truncate ' + this.wrapTable(qb.table) + ' restart identity';
},
// Compiles an `insert` query, allowing for multiple
// inserts using a single query statement.
compileInsert: function(qb) {
var values = qb.values;
var columns = _.pluck(values[0], 0);
var paramBlocks = [];
// If there are any "where" clauses, we need to omit
// any bindings that may have been associated with them.
if (qb.wheres.length > 0) this.clearWhereBindings(qb);
var sql = 'insert into ' + this.wrapTable(qb.table) + ' ';
if (columns.length === 0) {
sql += 'default values';
} else {
for (var i = 0, l = values.length; i < l; ++i) {
paramBlocks.push("(" + this.parameterize(_.pluck(values[i], 1)) + ")");
}
sql += "(" + this.columnize(columns) + ") values " + paramBlocks.join(', ');
}
if (qb.flags.returning) {
sql += ' returning "' + qb.flags.returning + '"';
}
return sql;
},
// Handles the response
handleResponse: function(builder, response) {
if (response.command === 'SELECT') return response.rows;
if (response.command === 'INSERT') {
return _.map(response.rows, function(row) {
return row[builder.flags.returning];
});
}
if (response.command === 'UPDATE' || response.command === 'DELETE') {
return response.rowCount;
}
return '';
2013-03-12 11:52:08 -04:00
}
}, baseGrammar);
// Grammar for the schema builder.
exports.schemaGrammar = _.defaults({
// The possible column modifiers.
modifiers: ['Increment', 'Nullable', 'Default'],
2013-09-12 13:30:47 -04:00
handleResponse: function(builder, resp) {
resp = resp[0];
if (builder.type === 'tableExists' || builder.type === 'columnExists') {
2013-09-12 13:30:47 -04:00
return resp.rows.length > 0;
}
2013-09-12 13:30:47 -04:00
return resp;
},
// Compile the query to determine if a table exists.
compileTableExists: function() {
return 'select * from information_schema.tables where table_name = ?';
},
2013-09-04 19:13:02 -04:00
// Compile the query to determine if a column exists in a table.
compileColumnExists: function() {
return 'select * from information_schema.columns where table_name = ? and column_name = ?';
},
// Compile a create table command.
2013-05-22 13:10:42 -04:00
compileAdd: function(blueprint) {
var table = this.wrapTable(blueprint);
var columns = this.prefixArray('add column', this.getColumns(blueprint));
return 'alter table ' + table + ' ' + columns.join(', ');
},
// Compile a primary key command.
compilePrimary: function(blueprint, command) {
var columns = this.columnize(command.columns);
return 'alter table ' + this.wrapTable(blueprint) + " add primary key (" + columns + ")";
},
// Compile a unique key command.
compileUnique: function(blueprint, command) {
var table = this.wrapTable(blueprint);
var columns = this.columnize(command.columns);
return 'alter table ' + table + ' add constraint ' + command.index + ' unique (' + columns + ')';
},
// Compile a plain index key command.
compileIndex: function(blueprint, command) {
var columns = this.columnize(command.columns);
return "create index " + command.index + " on " + this.wrapTable(blueprint) + ' (' + columns + ')';
},
// Compile a drop column command.
compileDropColumn: function(blueprint, command) {
var columns = this.prefixArray('drop column', this.wrapArray(command.columns));
2013-05-22 13:10:42 -04:00
var table = this.wrapTable(blueprint);
return 'alter table ' + table + ' ' + columns.join(', ');
},
// Compile a drop primary key command.
2013-05-22 13:10:42 -04:00
compileDropPrimary: function(blueprint) {
var table = blueprint.getTable();
return 'alter table ' + this.wrapTable(blueprint) + " drop constraint " + table + "_pkey";
},
// Compile a drop unique key command.
compileDropUnique: function(blueprint, command) {
var table = this.wrapTable(blueprint);
return "alter table " + table + " drop constraint " + command.index;
},
// Compile a drop foreign key command.
compileDropForeign: function(blueprint, command) {
var table = this.wrapTable(blueprint);
return "alter table " + table + " drop constraint " + command.index;
},
// Compile a rename table command.
compileRenameTable: function(blueprint, command) {
return 'alter table ' + this.wrapTable(blueprint) + ' rename to ' + this.wrapTable(command.to);
},
// Compile a rename column command.
compileRenameColumn: function(blueprint, command) {
return 'alter table ' + this.wrapTable(blueprint) + ' rename '+ this.wrapTable(command.from) + ' to ' + this.wrapTable(command.to);
},
// Compile a comment command.
compileComment: function(blueprint, command) {
var sql = '';
if (command.comment) {
sql += 'comment on table ' + this.wrapTable(blueprint) + ' is ' + "'" + command.comment + "'";
}
return sql;
},
// Compile any additional postgres specific items.
compileAdditional: function(blueprint, command) {
return _.compact(_.map(blueprint.columns, function(column) {
if (column.isCommented && _.isString(column.isCommented)) {
return 'comment on column ' + this.wrapTable(blueprint) + '.' + this.wrap(column.name) + " is '" + column.isCommented + "'";
}
}, this));
},
// Create the column definition for a integer type.
typeInteger: function(column) {
return column.autoIncrement ? 'serial' : 'integer';
},
// Create the column definition for a tiny integer type.
2013-05-22 13:10:42 -04:00
typeTinyInteger: function() {
return 'smallint';
},
// Create the column definition for a float type.
2013-05-22 13:10:42 -04:00
typeFloat: function() {
return 'real';
},
// Create the column definition for a decimal type.
typeDecimal: function(column) {
return "decimal(" + column.total + ", " + column.places + ")";
},
// Create the column definition for a boolean type.
2013-05-22 13:10:42 -04:00
typeBoolean: function() {
return 'boolean';
},
// Create the column definition for an enum type.
// Using method 2 here: http://stackoverflow.com/questions/10923213/postgres-enum-data-type-or-check-constraint
typeEnum: function(column) {
return 'text check(' + this.wrap(column.name) + " in('" + column.allowed.join("', '") + "'))";
},
// Create the column definition for a date-time type.
2013-05-22 13:10:42 -04:00
typeDateTime: function() {
return 'timestamp';
},
// Create the column definition for a timestamp type.
2013-05-22 13:10:42 -04:00
typeTimestamp: function() {
return 'timestamp';
},
// Create the column definition for a bit type.
typeBit: function(column) {
return column.length !== false ? 'bit(' + column.length + ')' : 'bit';
},
// Create the column definition for a binary type.
2013-05-22 13:10:42 -04:00
typeBinary: function() {
return 'bytea';
},
2013-07-17 10:26:24 -04:00
// Create the column definition for a uuid type.
typeUuid: function() {
return 'uuid';
},
2013-07-17 09:53:00 -04:00
// Create the column definition for a json type,
// checking whether the json type is supported - falling
// back to "text" if it's not.
typeJson: function(column, blueprint) {
if (parseFloat(blueprint.client.version) >= 9.2) return 'json';
2013-07-17 09:53:00 -04:00
return 'text';
},
// Get the SQL for an auto-increment column modifier.
modifyIncrement: function(blueprint, column) {
if (column.autoIncrement && (column.type == 'integer' || column.type == 'bigInteger')) {
return ' primary key not null';
}
}
}, baseSchemaGrammar, grammar);