Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
joeydewaal committed Oct 4, 2024
1 parent c730eec commit 3a878df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-postgres/src/type_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ impl PgType {
PgType::Bool => Some("true"),
PgType::Bytea => Some("'\\x00'"),
PgType::Int2 | PgType::Int4 | PgType::Int8 | PgType::Numeric => Some("1"),
PgType::Text | PgType::Varchar | PgType::Bpchar | PgType::Char=> Some("'a'"),
PgType::Text | PgType::Varchar | PgType::Bpchar | PgType::Char => Some("'a'"),
PgType::Uuid => Some("'00000000-0000-0000-0000-000000000000'"),
PgType::Lseg | PgType::Line => Some("'[ ( 1 , 1 ) , ( 2 , 2 ) ]'"),
PgType::Box | PgType::Polygon => Some("'( ( 1 , 1 ) , ( 2 , 2 ) )'"),
Expand Down

0 comments on commit 3a878df

Please sign in to comment.