refactor: replace specific extractor implementations with a generic extractor; remove mssql and postgres extractor files

This commit is contained in:
2026-04-26 19:33:59 -05:00
parent 33af391986
commit 9a00d6af04
5 changed files with 138 additions and 372 deletions

View File

@@ -118,7 +118,7 @@ func processMigrationJobs(
sourceTableAnalyzer := table_analyzers.NewMssqlTableAnalyzer(sourceDb)
targetTableAnalyzer := table_analyzers.NewPostgresTableAnalyzer(targetDb)
extractor := extractors.NewMssqlExtractor(sourceDb)
extractor := extractors.NewExtractor(sourceDb)
loader := loaders.NewGenericLoader(targetDb)
var azureClient *azure.Client