mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
// Loaded from https://raw.githubusercontent.com/denjucks/dex/master/lib/schema/helpers.js
|
|
|
|
|
|
import _ from '../deps/lodash@4.17.15/index.js';
|
|
const isString = _.isString;
|
|
const tail = _.tail;
|
|
|
|
// Push a new query onto the compiled "sequence" stack,
|
|
// creating a new formatter, returning the compiler.
|
|
export function pushQuery(query) {
|
|
if (!query) return;
|
|
if (isString(query)) {
|
|
query = { sql: query };
|
|
}
|
|
if (!query.bindings) {
|
|
query.bindings = this.formatter.bindings;
|
|
}
|
|
this.sequence.push(query);
|
|
|
|
this.formatter = this.client.formatter(this._commonBuilder);
|
|
}
|
|
|
|
// Used in cases where we need to push some additional column specific statements.
|
|
export function pushAdditional(fn) {
|
|
const child = new this.constructor(
|
|
this.client,
|
|
this.tableCompiler,
|
|
this.columnBuilder
|
|
);
|
|
fn.call(child, tail(arguments));
|
|
this.sequence.additional = (this.sequence.additional || []).concat(
|
|
child.sequence
|
|
);
|
|
}
|
|
|
|
// Unshift a new query onto the compiled "sequence" stack,
|
|
// creating a new formatter, returning the compiler.
|
|
export function unshiftQuery(query) {
|
|
if (!query) return;
|
|
if (isString(query)) {
|
|
query = { sql: query };
|
|
}
|
|
if (!query.bindings) {
|
|
query.bindings = this.formatter.bindings;
|
|
}
|
|
this.sequence.unshift(query);
|
|
|
|
this.formatter = this.client.formatter(this._commonBuilder);
|
|
}
|
|
|
|
export default {
|
|
pushAdditional,
|
|
pushQuery,
|
|
unshiftQuery,
|
|
};
|