PlannedStmt * pltl = (PlannedStmt *) linitial(plantree_list);
Plan *pl = pltl->planTree;
Plan *pl = pltl->planTree;
char *s;
s = nodeToString(pl);
s = nodeToString(pl);
How to restore from this s to Plan?
I noticed using func parseNodeString() in /backends/nodes/readfuncs.c can't work, for example there is no codes translating into Agg node, should I write my code to parse this string back into PlannedStmt node?Thanks!