Skip to content

Commit

Permalink
edit a log in merge stmts
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Feb 9, 2024
1 parent 3369a9b commit 03fd5f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/bigquery/bigquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ func (c *BigQueryConnector) NormalizeRecords(req *model.NormalizeRecordsRequest)
mergeStmts := mergeGen.generateMergeStmts(unchangedToastColumns)
for i, mergeStmt := range mergeStmts {
c.logger.Info(fmt.Sprintf("running merge statement [%d/%d] for table %s..",
i+1, len(mergeStmts), tableName))
i+1, len(mergeStmts), tableName), slog.String("mergeStmt", mergeStmt))
q := c.client.Query(mergeStmt)
_, err = q.Read(c.ctx)
if err != nil {
Expand Down

0 comments on commit 03fd5f3

Please sign in to comment.