(query string)
| 1818 | } |
| 1819 | |
| 1820 | func shouldUseSampleNumComparer(query string) bool { |
| 1821 | if strings.Contains(query, "bottomk") || strings.Contains(query, "topk") { |
| 1822 | return true |
| 1823 | } |
| 1824 | return false |
| 1825 | } |
| 1826 | |
| 1827 | func isValidQuery(generatedQuery parser.Expr, skipBackwardIncompat bool) bool { |
| 1828 | isValid := true |
no outgoing calls
no test coverage detected