mirror of
https://github.com/knex/knex.git
synced 2025-12-05 03:18:45 +00:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
/* eslint max-len: 0 */
|
|
|
|
const ViewCompiler_PG = require('../../postgres/schema/pg-viewcompiler.js');
|
|
|
|
class ViewCompiler_Redshift extends ViewCompiler_PG {
|
|
constructor(client, viewCompiler) {
|
|
super(client, viewCompiler);
|
|
}
|
|
}
|
|
|
|
module.exports = ViewCompiler_Redshift;
|