2019-07-10 23:48:43 +02:00

15 lines
362 B
JavaScript

/* eslint max-len: 0 */
// Redshift Table Builder & Compiler
// -------
const inherits = require('inherits');
const SchemaCompiler_PG = require('../../postgres/schema/compiler');
function SchemaCompiler_Redshift() {
SchemaCompiler_PG.apply(this, arguments);
}
inherits(SchemaCompiler_Redshift, SchemaCompiler_PG);
module.exports = SchemaCompiler_Redshift;