We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 122e5d3 commit a2fe12bCopy full SHA for a2fe12b
1 file changed
store/postgres/src/relational_queries.rs
@@ -501,7 +501,9 @@ impl<'a> QueryFragment<Pg> for QueryValue<'a> {
501
out.push_sql(") || ");
502
}
503
out.push_sql("to_tsvector(");
504
- out.push_bind_param::<Text, _>(&config.language.as_str().to_string())?;
+ out.push_bind_param::<Text, _>(
505
+ &config.language.as_str().to_string(),
506
+ )?;
507
out.push_sql("::regconfig, ");
508
out.push_bind_param::<Text, _>(&value)?;
509
0 commit comments