UNPKG

knex

Version:

A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3

16 lines (11 loc) 348 B
/* eslint max-len: 0 */ const ViewCompiler = require('../../../schema/viewcompiler.js'); class ViewCompiler_MySQL extends ViewCompiler { constructor(client, viewCompiler) { super(client, viewCompiler); } createOrReplace() { this.createQuery(this.columns, this.selectQuery, false, true); } } module.exports = ViewCompiler_MySQL;