Skip to content

Commit a2fe12b

Browse files
committed
rustfmt
1 parent 122e5d3 commit a2fe12b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

store/postgres/src/relational_queries.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,9 @@ impl<'a> QueryFragment<Pg> for QueryValue<'a> {
501501
out.push_sql(") || ");
502502
}
503503
out.push_sql("to_tsvector(");
504-
out.push_bind_param::<Text, _>(&config.language.as_str().to_string())?;
504+
out.push_bind_param::<Text, _>(
505+
&config.language.as_str().to_string(),
506+
)?;
505507
out.push_sql("::regconfig, ");
506508
out.push_bind_param::<Text, _>(&value)?;
507509
}

0 commit comments

Comments
 (0)