mirror of
https://github.com/knex/knex.git
synced 2025-11-23 21:45:38 +00:00
26 lines
758 B
JavaScript
26 lines
758 B
JavaScript
"use strict";
|
|
|
|
//
|
|
// // MSSQL Join Clause
|
|
// // ------
|
|
// var inherits = require('inherits')
|
|
// var JoinClause = require('../../../query/joinclause')
|
|
// var assign = require('lodash/object/assign');
|
|
//
|
|
// function JoinClause_MSSQL(table, type, schema) {
|
|
// JoinClause.call(this, table, type, schema)
|
|
// }
|
|
// inherits(JoinClause_MSSQL, JoinClause)
|
|
//
|
|
// assign(JoinClause_MSSQL.prototype, {
|
|
//
|
|
// // Adds a "using" clause to the current join.
|
|
// using: function(column) {
|
|
// return this.clauses.push([this._bool(), 'on', column, '=', column]);
|
|
// },
|
|
//
|
|
// })
|
|
//
|
|
// // Set the QueryBuilder & QueryCompiler on the client object,
|
|
// // incase anyone wants to modify things to suit their own purposes.
|
|
// module.exports = JoinClause_MSSQL;
|