mirror of
https://github.com/knex/knex.git
synced 2025-07-03 07:04:07 +00:00
394 lines
9.7 KiB
JavaScript
394 lines
9.7 KiB
JavaScript
// PostgreSQL Query Builder & Compiler
|
|
// ------
|
|
const identity = require('lodash/identity');
|
|
const reduce = require('lodash/reduce');
|
|
|
|
const QueryCompiler = require('../../../query/querycompiler');
|
|
const {
|
|
wrapString,
|
|
columnize: columnize_,
|
|
operator: operator_,
|
|
wrap: wrap_,
|
|
} = require('../../../formatter/wrappingFormatter');
|
|
|
|
class QueryCompiler_PG extends QueryCompiler {
|
|
constructor(client, builder, formatter) {
|
|
super(client, builder, formatter);
|
|
this._defaultInsertValue = 'default';
|
|
}
|
|
|
|
// Compiles a truncate query.
|
|
truncate() {
|
|
return `truncate ${this.tableName} restart identity`;
|
|
}
|
|
|
|
// is used if the an array with multiple empty values supplied
|
|
|
|
// Compiles an `insert` query, allowing for multiple
|
|
// inserts using a single query statement.
|
|
insert() {
|
|
let sql = super.insert();
|
|
if (sql === '') return sql;
|
|
|
|
const { returning, onConflict, ignore, merge, insert } = this.single;
|
|
if (onConflict && ignore) sql += this._ignore(onConflict);
|
|
if (onConflict && merge) {
|
|
sql += this._merge(merge.updates, onConflict, insert);
|
|
const wheres = this.where();
|
|
if (wheres) sql += ` ${wheres}`;
|
|
}
|
|
if (returning) sql += this._returning(returning);
|
|
|
|
return {
|
|
sql: sql,
|
|
returning,
|
|
};
|
|
}
|
|
|
|
// 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;
|
|
return {
|
|
sql:
|
|
withSQL +
|
|
`update ${this.single.only ? 'only ' : ''}${this.tableName} ` +
|
|
`set ${updateData.join(', ')}` +
|
|
(wheres ? ` ${wheres}` : '') +
|
|
this._returning(returning),
|
|
returning,
|
|
};
|
|
}
|
|
|
|
using() {
|
|
const usingTables = this.single.using;
|
|
if (!usingTables) return;
|
|
let sql = 'using ';
|
|
if (Array.isArray(usingTables)) {
|
|
sql += usingTables
|
|
.map((table) => {
|
|
return this.formatter.wrap(table);
|
|
})
|
|
.join(',');
|
|
} else {
|
|
sql += this.formatter.wrap(usingTables);
|
|
}
|
|
return sql;
|
|
}
|
|
|
|
// Compiles an `delete` query, allowing for a return value.
|
|
del() {
|
|
// Make sure tableName is processed by the formatter first.
|
|
const { tableName } = this;
|
|
const withSQL = this.with();
|
|
let wheres = this.where() || '';
|
|
let using = this.using() || '';
|
|
const joins = this.grouped.join;
|
|
|
|
const tableJoins = [];
|
|
if (Array.isArray(joins)) {
|
|
for (const join of joins) {
|
|
tableJoins.push(
|
|
wrap_(
|
|
this._joinTable(join),
|
|
undefined,
|
|
this.builder,
|
|
this.client,
|
|
this.bindingsHolder
|
|
)
|
|
);
|
|
|
|
const joinWheres = [];
|
|
for (const clause of join.clauses) {
|
|
joinWheres.push(
|
|
this.whereBasic({
|
|
column: clause.column,
|
|
operator: '=',
|
|
value: clause.value,
|
|
asColumn: true,
|
|
})
|
|
);
|
|
}
|
|
if (joinWheres.length > 0) {
|
|
wheres += (wheres ? ' and ' : '') + joinWheres.join(' ');
|
|
}
|
|
}
|
|
if (tableJoins.length > 0) {
|
|
using += (using ? ',' : 'using ') + tableJoins.join(',');
|
|
}
|
|
}
|
|
|
|
// With 'using' syntax, no tablename between DELETE and FROM.
|
|
const sql =
|
|
withSQL +
|
|
`delete from ${this.single.only ? 'only ' : ''}${tableName}` +
|
|
(using ? ` ${using}` : '') +
|
|
(wheres ? ` ${wheres}` : '');
|
|
const { returning } = this.single;
|
|
return {
|
|
sql: sql + this._returning(returning),
|
|
returning,
|
|
};
|
|
}
|
|
|
|
aggregate(stmt) {
|
|
return this._aggregate(stmt, { distinctParentheses: true });
|
|
}
|
|
|
|
_returning(value) {
|
|
return value ? ` returning ${this.formatter.columnize(value)}` : '';
|
|
}
|
|
|
|
_ignore(columns) {
|
|
if (columns === true) {
|
|
return ' on conflict do nothing';
|
|
}
|
|
return ` on conflict (${this.formatter.columnize(columns)}) do nothing`;
|
|
}
|
|
|
|
_merge(updates, columns, insert) {
|
|
let sql = ` on conflict (${this.formatter.columnize(
|
|
columns
|
|
)}) do update set `;
|
|
if (updates && Array.isArray(updates)) {
|
|
sql += updates
|
|
.map((column) =>
|
|
wrapString(
|
|
column.split('.').pop(),
|
|
this.formatter.builder,
|
|
this.client,
|
|
this.formatter
|
|
)
|
|
)
|
|
.map((column) => `${column} = excluded.${column}`)
|
|
.join(', ');
|
|
|
|
return sql;
|
|
} else if (updates && typeof updates === 'object') {
|
|
const updateData = this._prepUpdate(updates);
|
|
if (typeof updateData === 'string') {
|
|
sql += updateData;
|
|
} else {
|
|
sql += updateData.join(',');
|
|
}
|
|
|
|
return sql;
|
|
} else {
|
|
const insertData = this._prepInsert(insert);
|
|
if (typeof insertData === 'string') {
|
|
throw new Error(
|
|
'If using merge with a raw insert query, then updates must be provided'
|
|
);
|
|
}
|
|
|
|
sql += insertData.columns
|
|
.map((column) =>
|
|
wrapString(column.split('.').pop(), this.builder, this.client)
|
|
)
|
|
.map((column) => `${column} = excluded.${column}`)
|
|
.join(', ');
|
|
|
|
return sql;
|
|
}
|
|
}
|
|
|
|
// 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(', ');
|
|
}
|
|
|
|
_lockingClause(lockMode) {
|
|
const tables = this.single.lockTables || [];
|
|
|
|
return lockMode + (tables.length ? ' of ' + this._tableNames(tables) : '');
|
|
}
|
|
|
|
forUpdate() {
|
|
return this._lockingClause('for update');
|
|
}
|
|
|
|
forShare() {
|
|
return this._lockingClause('for share');
|
|
}
|
|
|
|
forNoKeyUpdate() {
|
|
return this._lockingClause('for no key update');
|
|
}
|
|
|
|
forKeyShare() {
|
|
return this._lockingClause('for key share');
|
|
}
|
|
|
|
skipLocked() {
|
|
return 'skip locked';
|
|
}
|
|
|
|
noWait() {
|
|
return 'nowait';
|
|
}
|
|
|
|
// 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);
|
|
}
|
|
|
|
const sql =
|
|
'select * from information_schema.columns where table_name = ? and table_catalog = current_database()';
|
|
const bindings = [table];
|
|
|
|
return this._buildColumnInfoQuery(schema, sql, bindings, column);
|
|
}
|
|
|
|
_buildColumnInfoQuery(schema, sql, bindings, column) {
|
|
if (schema) {
|
|
sql += ' and table_schema = ?';
|
|
bindings.push(schema);
|
|
} else {
|
|
sql += ' and table_schema = current_schema()';
|
|
}
|
|
|
|
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;
|
|
},
|
|
};
|
|
}
|
|
|
|
distinctOn(value) {
|
|
return 'distinct on (' + this.formatter.columnize(value) + ') ';
|
|
}
|
|
|
|
// Json functions
|
|
jsonExtract(params) {
|
|
return this._jsonExtract('jsonb_path_query', params);
|
|
}
|
|
|
|
jsonSet(params) {
|
|
return this._jsonSet(
|
|
'jsonb_set',
|
|
Object.assign({}, params, {
|
|
path: this.client.toPathForJson(params.path),
|
|
})
|
|
);
|
|
}
|
|
|
|
jsonInsert(params) {
|
|
return this._jsonSet(
|
|
'jsonb_insert',
|
|
Object.assign({}, params, {
|
|
path: this.client.toPathForJson(params.path),
|
|
})
|
|
);
|
|
}
|
|
|
|
jsonRemove(params) {
|
|
const jsonCol = `${columnize_(
|
|
params.column,
|
|
this.builder,
|
|
this.client,
|
|
this.bindingsHolder
|
|
)} #- ${this.client.parameter(
|
|
this.client.toPathForJson(params.path),
|
|
this.builder,
|
|
this.bindingsHolder
|
|
)}`;
|
|
return params.alias
|
|
? this.client.alias(jsonCol, this.formatter.wrap(params.alias))
|
|
: jsonCol;
|
|
}
|
|
|
|
whereJsonPath(statement) {
|
|
let castValue = '';
|
|
if (parseInt(statement.value)) {
|
|
castValue = '::int';
|
|
} else if (parseFloat(statement.value)) {
|
|
castValue = '::float';
|
|
} else {
|
|
castValue = " #>> '{}'";
|
|
}
|
|
return `jsonb_path_query_first(${this._columnClause(
|
|
statement
|
|
)}, ${this.client.parameter(
|
|
statement.jsonPath,
|
|
this.builder,
|
|
this.bindingsHolder
|
|
)})${castValue} ${operator_(
|
|
statement.operator,
|
|
this.builder,
|
|
this.client,
|
|
this.bindingsHolder
|
|
)} ${this._jsonValueClause(statement)}`;
|
|
}
|
|
|
|
whereJsonSupersetOf(statement) {
|
|
return this._not(
|
|
statement,
|
|
`${wrap_(
|
|
statement.column,
|
|
undefined,
|
|
this.builder,
|
|
this.client,
|
|
this.bindingsHolder
|
|
)} @> ${this._jsonValueClause(statement)}`
|
|
);
|
|
}
|
|
|
|
whereJsonSubsetOf(statement) {
|
|
return this._not(
|
|
statement,
|
|
`${columnize_(
|
|
statement.column,
|
|
this.builder,
|
|
this.client,
|
|
this.bindingsHolder
|
|
)} <@ ${this._jsonValueClause(statement)}`
|
|
);
|
|
}
|
|
|
|
onJsonPathEquals(clause) {
|
|
return this._onJsonPathEquals('jsonb_path_query_first', clause);
|
|
}
|
|
}
|
|
|
|
module.exports = QueryCompiler_PG;
|