It's declared as being an array of bool, but it's printed
differently from the way bool and arrays of bool are handled
elsewhere.
Patch by Amit Kapila. Anomaly noted independently by Amit Kapila
and KaiGai Kohei.
appendStringInfoString(str, " :mergeNullsFirst");
for (i = 0; i < numCols; i++)
- appendStringInfo(str, " %d", (int) node->mergeNullsFirst[i]);
+ appendStringInfo(str, " %s", booltostr(node->mergeNullsFirst[i]));
}
static void