| 16 | { |
| 17 | |
| 18 | const char * toString(SortDirection sort_direction) |
| 19 | { |
| 20 | switch (sort_direction) |
| 21 | { |
| 22 | case SortDirection::ASCENDING: return "ASCENDING"; |
| 23 | case SortDirection::DESCENDING: return "DESCENDING"; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | SortNode::SortNode(QueryTreeNodePtr expression_, |
| 28 | SortDirection sort_direction_, |
no outgoing calls
no test coverage detected