mirror of
https://github.com/knex/knex.git
synced 2025-07-05 08:01:09 +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;
|