mirror of
https://github.com/knex/knex.git
synced 2025-07-06 08:30:38 +00:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
/* eslint max-len: 0 */
|
|
|
|
const ViewCompiler = require('../../../schema/viewcompiler.js');
|
|
|
|
class ViewCompiler_PG extends ViewCompiler {
|
|
constructor(client, viewCompiler) {
|
|
super(client, viewCompiler);
|
|
}
|
|
}
|
|
|
|
module.exports = ViewCompiler_PG;
|