Skip to content

Commit

Permalink
remove seemingly meaningless _peerdb_concat_
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Mar 1, 2024
1 parent 0305953 commit 94c8585
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 @@ -139,7 +139,7 @@ func (m *mergeStmtGenerator) generateDeDupedCTE() string {
) SELECT * FROM _dd`

shortPkeys := m.transformedPkeyStrings(true)
pkeyColsStr := strings.Join(shortPkeys, ", '_peerdb_concat_' ")
pkeyColsStr := strings.Join(shortPkeys, ",")
return fmt.Sprintf(cte, pkeyColsStr)
}

Expand Down

0 comments on commit 94c8585

Please sign in to comment.