File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cubejs-ksql-driver/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import {
1010} from '@cubejs-backend/shared' ;
1111import {
1212 BaseDriver , DriverCapabilities ,
13- DriverInterface ,
13+ DriverInterface , QueryOptions ,
1414} from '@cubejs-backend/base-driver' ;
1515import { Kafka } from 'kafkajs' ;
1616import sqlstring , { format as formatSql } from 'sqlstring' ;
@@ -320,7 +320,7 @@ export class KsqlDriver extends BaseDriver implements DriverInterface {
320320
321321 public dropTable ( tableName : string , options : any ) : Promise < any > {
322322 return this . dropTableMutex . runExclusive (
323- async ( ) => super . dropTable ( this . quoteIdentifier ( this . tableDashName ( tableName ) ) , options )
323+ async ( ) => this . query ( `DROP TABLE ${ this . quoteIdentifier ( this . tableDashName ( tableName ) ) } DELETE TOPIC` , [ ] , options )
324324 ) ;
325325 }
326326
You can’t perform that action at this time.
0 commit comments