postgre, mysql analysers - refactor

This commit is contained in:
Jan Prochazka
2020-04-12 10:16:33 +02:00
parent fae97a8b4a
commit 6da41bcf4a
7 changed files with 51 additions and 36 deletions

View File

@@ -109,11 +109,11 @@ const driver = {
},
async analyseFull(pool) {
const analyser = new MsSqlAnalyser(pool, this);
return await analyser.fullAnalysis();
return analyser.fullAnalysis();
},
async analyseIncremental(pool, structure) {
const analyser = new MsSqlAnalyser(pool, this);
return await analyser.incrementalAnalysis(structure);
return analyser.incrementalAnalysis(structure);
},
createDumper() {
return new MsSqlDumper(this);