feat: update extractor error handling to use models.UnknownRowValues for improved type consistency

This commit is contained in:
2026-04-10 19:29:07 -05:00
parent ca621352c9
commit d228a048b8
4 changed files with 4 additions and 254 deletions

View File

@@ -109,7 +109,7 @@ func loadChunkPostgres(
return false
}
func loadRowsMssql(ctx context.Context, tableInfo config.TargetTableInfo, columns []ColumnType, db *sql.DB, in <-chan []UnknownRowValues) error {
func loadRowsMssql(ctx context.Context, tableInfo config.TargetTableInfo, columns []ColumnType, db *sql.DB, in <-chan []models.UnknownRowValues) error {
chunkCount := 0
totalRowsLoaded := 0