feat: refactor configuration to include source and target database types

This commit is contained in:
2026-04-10 22:58:57 -05:00
parent a5b5a04feb
commit 1be7018ba3
4 changed files with 10 additions and 31 deletions

View File

@@ -175,16 +175,3 @@ func logColumnTypes(columnTypes []models.ColumnType, label string) {
log.Debugf("%+v", col)
}
}
func logSampleRow(
schema string,
table string,
columns []ColumnType,
rowValues models.UnknownRowValues,
tag string,
) {
log.Infof("[%s.%s] Sample row: (%s)", schema, table, tag)
for i, col := range columns {
log.Infof("%s (%T): %v", col.Name(), rowValues[i], rowValues[i])
}
}