(&self, args: &[Expr])
| 658 | } |
| 659 | |
| 660 | fn make_array_to_sql(&self, args: &[Expr]) -> Result<ast::Expr> { |
| 661 | let args = args |
| 662 | .iter() |
| 663 | .map(|e| self.expr_to_sql(e)) |
| 664 | .collect::<Result<Vec<_>>>()?; |
| 665 | Ok(ast::Expr::Array(Array { |
| 666 | elem: args, |
| 667 | named: self.dialect.use_array_keyword_for_array_literals(), |
| 668 | })) |
| 669 | } |
| 670 | |
| 671 | fn scalar_value_list_to_sql(&self, array: &ArrayRef) -> Result<ast::Expr> { |
| 672 | let mut elem = Vec::new(); |
no test coverage detected