164 lines
4.0 KiB
JavaScript
Raw Normal View History

2016-03-02 17:07:05 +01:00
// PostgreSQL Query Builder & Compiler
// ------
const QueryCompiler = require('../../../query/compiler');
2016-03-02 17:07:05 +01:00
const { reduce, identity } = require('lodash');
2016-03-02 17:07:05 +01:00
class QueryCompiler_PG extends QueryCompiler {
constructor(client, builder) {
super(client, builder);
this._defaultInsertValue = 'default';
}
2016-03-02 17:07:05 +01:00
// Compiles a truncate query.
truncate() {
return `truncate ${this.tableName} restart identity`;
}
2016-03-02 17:07:05 +01:00
// is used if the an array with multiple empty values supplied
2016-03-02 17:07:05 +01:00
// Compiles an `insert` query, allowing for multiple
// inserts using a single query statement.
insert() {
const sql = QueryCompiler.prototype.insert.call(this);
2016-03-02 17:07:05 +01:00
if (sql === '') return sql;
const { returning } = this.single;
2016-03-02 17:07:05 +01:00
return {
sql: sql + this._returning(returning),
returning,
2016-03-02 17:07:05 +01:00
};
}
2016-03-02 17:07:05 +01:00
// Compiles an `update` query, allowing for a return value.
update() {
const withSQL = this.with();
const updateData = this._prepUpdate(this.single.update);
const wheres = this.where();
const { returning } = this.single;
2016-03-02 17:07:05 +01:00
return {
sql:
withSQL +
`update ${this.single.only ? 'only ' : ''}${this.tableName} ` +
`set ${updateData.join(', ')}` +
(wheres ? ` ${wheres}` : '') +
this._returning(returning),
returning,
2016-03-02 17:07:05 +01:00
};
}
2016-03-02 17:07:05 +01:00
// Compiles an `update` query, allowing for a return value.
del() {
const sql = QueryCompiler.prototype.del.apply(this, arguments);
const { returning } = this.single;
2016-03-02 17:07:05 +01:00
return {
sql: sql + this._returning(returning),
returning,
2016-03-02 17:07:05 +01:00
};
}
2016-03-02 17:07:05 +01:00
aggregate(stmt) {
return this._aggregate(stmt, { distinctParentheses: true });
}
_returning(value) {
return value ? ` returning ${this.formatter.columnize(value)}` : '';
}
2016-03-02 17:07:05 +01:00
// Join array of table names and apply default schema.
_tableNames(tables) {
const schemaName = this.single.schema;
const sql = [];
for (let i = 0; i < tables.length; i++) {
let tableName = tables[i];
if (tableName) {
if (schemaName) {
tableName = `${schemaName}.${tableName}`;
}
sql.push(this.formatter.wrap(tableName));
}
}
return sql.join(', ');
}
forUpdate() {
const tables = this.single.lockTables || [];
return (
'for update' + (tables.length ? ' of ' + this._tableNames(tables) : '')
);
}
2016-03-02 17:07:05 +01:00
forShare() {
const tables = this.single.lockTables || [];
return (
'for share' + (tables.length ? ' of ' + this._tableNames(tables) : '')
);
}
2016-03-02 17:07:05 +01:00
skipLocked() {
return 'skip locked';
}
noWait() {
return 'nowait';
}
2016-03-02 17:07:05 +01:00
// Compiles a columnInfo query
columnInfo() {
const column = this.single.columnInfo;
let schema = this.single.schema;
// The user may have specified a custom wrapIdentifier function in the config. We
// need to run the identifiers through that function, but not format them as
// identifiers otherwise.
const table = this.client.customWrapIdentifier(this.single.table, identity);
if (schema) {
schema = this.client.customWrapIdentifier(schema, identity);
}
2016-03-02 17:07:05 +01:00
let sql =
'select * from information_schema.columns where table_name = ? and table_catalog = ?';
const bindings = [table, this.client.database()];
2016-03-02 17:07:05 +01:00
if (schema) {
2016-03-02 17:07:05 +01:00
sql += ' and table_schema = ?';
bindings.push(schema);
2016-03-02 17:07:05 +01:00
} else {
Add redshift support without changing cli or package.json (#2233) * Add a Redshift dialect that inherits from Postgres. * Turn .index() and .dropIndex() into no-ops with warnings in the Redshift dialect. * Update the Redshift dialect to be compatible with master. * Update package.json * Disable liftoff cli * Remove the CLI * Add lib to the repo * Allow the escaping of named bindings. * Update dist * Update the Redshift dialect’s instantiation of the query and column compilers. * Update the distribution * Fix a merge conflict * Take lib back out * Trying to bring back in line with tgreisser/knex * Add npm 5 package-lock * Bring cli.js back in line * Bring cli.js back in line * Progress commit on redshift integration tests * Revert "Progress commit on redshift integration tests" This reverts commit 207e31635c638853dec54ce0580d34559ba5a54c. * Progress commit * Working not null on primary columns in createTable * Working redshift unit tests * Working unit and integration tests, still need to fix migration tests * Brought datatypes more in line with what redshift actually supports * Added query compiler unit tests * Add a hacky returning clause for redshift ugh * Working migration integration tests * Working insert integration tests * Allow multiple insert returning values * Working select integration tests * Working join integration tests * Working aggregate integration tests * All integration suite tests working * Put docker index for reconnect tests back * Redshift does not support insert...returning, there does not seem to be a way around that, therefore accept it and test accordingly * Leave redshift integration tests in place, but do not run them by default * Fix mysql order by test * Fix more tests * Change test db name to knex_test for consistency * Address PR comments
2018-02-03 08:33:02 -05:00
sql += ' and table_schema = current_schema()';
2016-03-02 17:07:05 +01:00
}
return {
sql,
bindings,
output(resp) {
const out = reduce(
resp.rows,
function(columns, val) {
columns[val.column_name] = {
type: val.data_type,
maxLength: val.character_maximum_length,
nullable: val.is_nullable === 'YES',
defaultValue: val.column_default,
};
return columns;
},
{}
);
return (column && out[column]) || out;
},
2016-03-02 17:07:05 +01:00
};
}
distinctOn(value) {
return 'distinct on (' + this.formatter.columnize(value) + ') ';
}
}
2016-03-02 17:07:05 +01:00
module.exports = QueryCompiler_PG;