* makeGroupingSet * */
| 795 | * |
| 796 | */ |
| 797 | GroupingSet * |
| 798 | makeGroupingSet(GroupingSetKind kind, List *content, int location) |
| 799 | { |
| 800 | GroupingSet *n = makeNode(GroupingSet); |
| 801 | |
| 802 | n->kind = kind; |
| 803 | n->content = content; |
| 804 | n->location = location; |
| 805 | return n; |
| 806 | } |
| 807 | |
| 808 | /* |
| 809 | * makeVacuumRelation - |
no outgoing calls
no test coverage detected