refactor(types): simplify <&str as ToSql>::to_sql
This commit is contained in:
parent
7dd6813fa8
commit
a67fe643a9
@ -1012,10 +1012,10 @@ impl ToSql for Vec<u8> {
|
|||||||
|
|
||||||
impl<'a> ToSql for &'a str {
|
impl<'a> ToSql for &'a str {
|
||||||
fn to_sql(&self, ty: &Type, w: &mut BytesMut) -> Result<IsNull, Box<dyn Error + Sync + Send>> {
|
fn to_sql(&self, ty: &Type, w: &mut BytesMut) -> Result<IsNull, Box<dyn Error + Sync + Send>> {
|
||||||
match *ty {
|
match ty.name() {
|
||||||
ref ty if ty.name() == "ltree" => types::ltree_to_sql(self, w),
|
"ltree" => types::ltree_to_sql(self, w),
|
||||||
ref ty if ty.name() == "lquery" => types::lquery_to_sql(self, w),
|
"lquery" => types::lquery_to_sql(self, w),
|
||||||
ref ty if ty.name() == "ltxtquery" => types::ltxtquery_to_sql(self, w),
|
"ltxtquery" => types::ltxtquery_to_sql(self, w),
|
||||||
_ => types::text_to_sql(self, w),
|
_ => types::text_to_sql(self, w),
|
||||||
}
|
}
|
||||||
Ok(IsNull::No)
|
Ok(IsNull::No)
|
||||||
|
Loading…
Reference in New Issue
Block a user