We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d41bb commit cc472afCopy full SHA for cc472af
packages/cubejs-clickhouse-driver/src/ClickHouseDriver.ts
@@ -573,6 +573,10 @@ export class ClickHouseDriver extends BaseDriver implements DriverInterface {
573
return this.query('SELECT name as table_name FROM system.tables WHERE database = ?', [schemaName]);
574
}
575
576
+ public override async dropTable(tableName: string, _options?: QueryOptions): Promise<void> {
577
+ await this.command(`DROP TABLE ${tableName}`);
578
+ }
579
+
580
protected getExportBucket(
581
dataSource: string,
582
): ClickhouseDriverExportAWS | undefined {
0 commit comments