(function: &str, field: &str)
| 38 | } |
| 39 | |
| 40 | fn canonical_aggregate_key(function: &str, field: &str) -> String { |
| 41 | format!("{function}({field})") |
| 42 | } |
| 43 | |
| 44 | /// Extract `IN (SELECT ...)` and `NOT IN (SELECT ...)` patterns from a WHERE clause. |
| 45 | /// |
no outgoing calls
no test coverage detected