fix lowercase for tablelist do not always convert column names to lower

This commit is contained in:
Rinie Kervel
2022-11-07 12:09:50 +01:00
parent a0cefbc1ca
commit 48b1e28ee1
3 changed files with 26 additions and 32 deletions

View File

@@ -74,6 +74,7 @@ class Analyser extends DatabaseAnalyser {
);
this.feedback({ analysingMessage: 'Loading columns' });
const columns = await this.driver.query(this.pool, this.createQuery('columns', ['tables', 'views']));
this.feedback({ analysingMessage: 'Loading primary keys' });
const pkColumns = await this.driver.query(this.pool, this.createQuery('primaryKeys', ['tables']));