Skip to content

Commit

Permalink
fix(postgres): syntax error in nullables query
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Aug 21, 2024
1 parent 8db2055 commit e731cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-postgres/src/connection/describe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ WHERE rngtypid = $1
.push_unseparated("::int4");
tuple
.push_bind(column.relation_attribute_no)
.push_bind_unseparated("::int2");
.push_unseparated("::int2");
});

nullable_query.push(
Expand Down

0 comments on commit e731cfd

Please sign in to comment.