Skip to content

Commit

Permalink
Fix Clickhouse QRep Append (#1656)
Browse files Browse the repository at this point in the history
Gets CH QRep append working by skipping the sign column for the final
insert into select
  • Loading branch information
Amogh-Bharadwaj authored Apr 30, 2024
1 parent 3dab1b3 commit 13921fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions flow/connectors/clickhouse/qrep_avro_sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ func (s *ClickhouseAvroSyncMethod) SyncQRepRecords(
for _, col := range dstTableSchema {
colName := col.Name()
if strings.EqualFold(colName, config.SoftDeleteColName) ||
strings.EqualFold(colName, signColName) ||
strings.EqualFold(colName, config.SyncedAtColName) ||
strings.EqualFold(colName, versionColName) {
continue
Expand Down

0 comments on commit 13921fb

Please sign in to comment.