()
| 206 | func (ls SelectCommand) CommandNode() {} |
| 207 | func (ls SelectCommand) TokenLiteral() string { return ls.Token.Literal } |
| 208 | func (ls *SelectCommand) AggregateFunctionAppears() bool { |
| 209 | for _, space := range ls.Space { |
| 210 | if space.ContainsAggregateFunc() { |
| 211 | return true |
| 212 | } |
| 213 | } |
| 214 | return false |
| 215 | } |
| 216 | |
| 217 | // HasWhereCommand - returns true if optional HasWhereCommand is present in SelectCommand |
| 218 | // |
no test coverage detected