Skip to content

Commit

Permalink
Fix regression due to merge mixup between fixes & lints (#1067)
Browse files Browse the repository at this point in the history
#1062 renamed parameter #1066 used
  • Loading branch information
serprex authored Jan 12, 2024
1 parent f419d28 commit 52d3436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/bigquery/merge_stmt_generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (m *mergeStmtGenerator) generateDeDupedCTE() string {
}

// generateMergeStmt generates a merge statement.
func (m *mergeStmtGenerator) generateMergeStmt(_unchangedToastColumns []string) string {
func (m *mergeStmtGenerator) generateMergeStmt(unchangedToastColumns []string) string {
// comma separated list of column names
columnCount := utils.TableSchemaColumns(m.normalizedTableSchema)
backtickColNames := make([]string, 0, columnCount)
Expand Down

0 comments on commit 52d3436

Please sign in to comment.