Abbas Butt - 2013-01-10

Once this bug is fixed one needs to fix this condition in pgxc_start_command_on_connection function

if (step->base_tlist != NULL ||
step->exec_nodes->accesstype == RELATION_ACCESS_READ ||
step->has_row_marks)
send_desc = true;

The correct condition should be just

if (step->base_tlist != NULL)
send_desc = true;