refactor: optimize row handling in mssql extractor and transformer

This commit is contained in:
2026-04-17 01:10:45 -05:00
parent 46597c4ffd
commit ec96532d04
3 changed files with 8 additions and 11 deletions

View File

@@ -74,6 +74,10 @@ func (mssqlTr *MssqlTransformer) ProcessBatch(
}
}
if rowValues == nil {
continue
}
for _, task := range transformationPlan {
val := rowValues[task.Index]
if val == nil {