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 4b8c6fe commit 85fae63Copy full SHA for 85fae63
src/ast/query.rs
@@ -1684,15 +1684,7 @@ impl fmt::Display for OrderByExpr {
1684
}
1685
if let Some(ref interpolate) = self.interpolate {
1686
match &interpolate.expr {
1687
- Some(exprs) => write!(
1688
- f,
1689
- " INTERPOLATE ({})",
1690
- exprs
1691
- .iter()
1692
- .map(std::string::ToString::to_string)
1693
- .collect::<Vec<_>>()
1694
- .join(", ")
1695
- )?,
+ Some(exprs) => write!(f, " INTERPOLATE ({})", display_comma_separated(exprs))?,
1696
None => write!(f, " INTERPOLATE")?,
1697
1698
0 commit comments