Skip to content

Commit

Permalink
fix: retrieve distinct columns
Browse files Browse the repository at this point in the history
  • Loading branch information
dejii authored Nov 29, 2024
1 parent 84d93f0 commit 433c1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pg_replicate/src/clients/postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ impl ReplicationClient {
table_id: TableId,
) -> Result<Vec<ColumnSchema>, ReplicationClientError> {
let column_info_query = format!(
"select a.attname,
"select distinct a.attname,
a.atttypid,
a.atttypmod,
a.attnotnull,
Expand Down

0 comments on commit 433c1ad

Please sign in to comment.