Browse Source

Merge pull request #7443 from nocodb/nc-fix/mysql-ext

fix: avoid overriding sqlClient
pull/7445/head
Mert E 8 months ago committed by GitHub
parent
commit
009401901d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nocodb/src/db/sql-client/lib/mysql/MysqlClient.ts

2
packages/nocodb/src/db/sql-client/lib/mysql/MysqlClient.ts

@ -316,8 +316,6 @@ class MysqlClient extends KnexClient {
log.debug('Create database if not exists', data);
// create new knex client
this.sqlClient = knex(this.connectionConfig);
await tempSqlClient.destroy();
} catch (e) {
log.ppe(e, func);

Loading…
Cancel
Save