We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22911d9 commit cbb6fddCopy full SHA for cbb6fdd
src/rewrite.rs
@@ -143,7 +143,7 @@ fn expr_to_sql_repr(expr: &Expr) -> String {
143
match expr {
144
Expr::Column(Column { name, relation }) => relation
145
.as_ref()
146
- .map(|r| format!("{}.{}", r, name))
+ .map(|r| format!("{r}.{name}"))
147
.unwrap_or_else(|| name.clone()),
148
Expr::Alias(alias) => alias.name.clone(),
149
Expr::Literal(scalar) => match scalar {
0 commit comments