(assigns []ast.Assignment)
| 1025 | } |
| 1026 | |
| 1027 | func isAggAssignments(assigns []ast.Assignment) bool { |
| 1028 | return !slices.ContainsFunc(assigns, func(a ast.Assignment) bool { |
| 1029 | return isAggFunc(a.RHS) == nil |
| 1030 | }) |
| 1031 | } |
| 1032 | |
| 1033 | func IsSearch(e ast.Expr) bool { |
| 1034 | switch e := e.(type) { |