analyse mysql views optimalization #273

This commit is contained in:
Jan Prochazka
2022-06-02 12:02:54 +02:00
parent 0209780f1c
commit ee7198a913
3 changed files with 23 additions and 8 deletions

View File

@@ -56,15 +56,21 @@ class Analyser extends DatabaseAnalyser {
async getViewTexts(allViewNames) {
const res = {};
for (const viewName of this.getRequestedViewNames(allViewNames)) {
try {
const resp = await this.driver.query(this.pool, `SHOW CREATE VIEW \`${viewName}\``);
res[viewName] = resp.rows[0]['Create View'];
} catch (err) {
console.log('ERROR', err);
res[viewName] = `${err}`;
}
const views = await this.safeQuery(this.createQuery('viewTexts', ['views']));
for (const view of views.rows) {
res[view.pureName] = `CREATE VIEW \`${view.pureName}\` AS ${view.viewDefinition}`;
}
// for (const viewName of this.getRequestedViewNames(allViewNames)) {
// try {
// const resp = await this.driver.query(this.pool, `SHOW CREATE VIEW \`${viewName}\``);
// res[viewName] = resp.rows[0]['Create View'];
// } catch (err) {
// console.log('ERROR', err);
// res[viewName] = `${err}`;
// }
// }
return res;
}