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 643c4b3 commit f28f944Copy full SHA for f28f944
src/rewrite.rs
@@ -142,7 +142,8 @@ impl std::fmt::Display for JsonOperator {
142
fn expr_to_sql_repr(expr: &Expr) -> String {
143
match expr {
144
Expr::Column(Column { name, relation }) => relation
145
- .as_ref().map_or_else(|| name.clone(), |r| format!("{r}.{name}")),
+ .as_ref()
146
+ .map_or_else(|| name.clone(), |r| format!("{r}.{name}")),
147
Expr::Alias(alias) => alias.name.clone(),
148
Expr::Literal(scalar) => match scalar {
149
ScalarValue::Utf8(Some(v)) | ScalarValue::Utf8View(Some(v)) | ScalarValue::LargeUtf8(Some(v)) => {
0 commit comments