(name: &str)
| 201 | } |
| 202 | |
| 203 | fn duplicate_error(name: &str) -> SqlError { |
| 204 | SqlError::Unsupported { |
| 205 | detail: format!("option '{name}' specified more than once"), |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | /// Extract a string literal from a function argument expression. |
| 210 | fn extract_string(expr: &ast::Expr, option: &str) -> Result<String> { |