Skip to content

Commit

Permalink
identifier separation
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Oct 9, 2023
1 parent 814bd90 commit 9943f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/postgres/qrep_sync_method.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (s *QRepStagingTableSync) SyncQRepRecords(
syncRecordsStartTime := time.Now()
syncedRows, err := tx.CopyFrom(
context.Background(),
pgx.Identifier{dstTableName.String()},
pgx.Identifier{dstTableName.Schema, dstTableName.Table},
schema.GetColumnNames(),
copySource,
)
Expand Down

0 comments on commit 9943f26

Please sign in to comment.