mirror of
https://github.com/knex/knex.git
synced 2025-11-17 18:44:21 +00:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
const QueryCompiler_PG = require('../postgres/query/pg-querycompiler');
|
|
|
|
class QueryCompiler_CRDB extends QueryCompiler_PG {
|
|
truncate() {
|
|
return `truncate ${this.tableName}`;
|
|
}
|
|
}
|
|
|
|
module.exports = QueryCompiler_CRDB;
|