Returns true if query node GROUP BY section is not empty, false otherwise
| 376 | |
| 377 | /// Returns true if query node GROUP BY section is not empty, false otherwise |
| 378 | bool hasGroupBy() const |
| 379 | { |
| 380 | return !getGroupBy().getNodes().empty(); |
| 381 | } |
| 382 | |
| 383 | /// Get GROUP BY section |
| 384 | const ListNode & getGroupBy() const |
no test coverage detected