Skip to content

Commit

Permalink
silly miss, no params
Browse files Browse the repository at this point in the history
  • Loading branch information
heavycrystal committed Apr 9, 2024
1 parent 8e8f5ce commit b79953f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/postgres/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ func (c *PostgresConnector) NormalizeRecords(ctx context.Context, req *model.Nor
for _, destinationTableName := range destinationTableNames {
normalizeStatements := normalizeStmtGen.generateNormalizeStatements(destinationTableName)
for _, normalizeStatement := range normalizeStatements {
ct, err := normalizeRecordsTx.Exec(ctx, normalizeStatement)
ct, err := normalizeRecordsTx.Exec(ctx, normalizeStatement, normBatchID, req.SyncBatchID, destinationTableName)
if err != nil {
return nil, fmt.Errorf("error executing merge statements: %w", err)
}
Expand Down

0 comments on commit b79953f

Please sign in to comment.