Skip to content

Commit 3cd0bf3

Browse files
committed
fix(mysql-driver): Remove debug output
1 parent 509a622 commit 3cd0bf3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/cubejs-mysql-driver/driver/MySqlDriver.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,7 @@ class MySqlDriver extends BaseDriver {
126126

127127
async loadPreAggregationIntoTable(preAggregationTableName, loadSql, params, tx) {
128128
if (this.config.loadPreAggregationWithoutMetaLock) {
129-
console.log(`${loadSql} LIMIT 0`);
130129
await this.query(`${loadSql} LIMIT 0`, params);
131-
console.log(loadSql.replace(/^CREATE TABLE (\S+) AS/i, 'INSERT INTO $1'));
132130
return this.query(loadSql.replace(/^CREATE TABLE (\S+) AS/i, 'INSERT INTO $1'), params);
133131
}
134132
return super.loadPreAggregationIntoTable(preAggregationTableName, loadSql, params, tx);

0 commit comments

Comments
 (0)