فهرست منبع

HPCC-10470 Roxie Graphs are not getting merged correctly

The xgmml being returned from control:querystats was not layed out as expected
(an extra graph layer). While this did not cause any problems displaying the
graphs, it prevented the merge code from operating correctly.

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 11 سال پیش
والد
کامیت
06f6650170
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      roxie/ccd/ccdquery.cpp

+ 2 - 2
roxie/ccd/ccdquery.cpp

@@ -1075,10 +1075,10 @@ public:
                     if (thisGraphNameStr.length() && (stricmp(graphName, thisGraphNameStr.s.str()) != 0))
                         continue; // not interested in this one
                 }
-                reply.appendf("<Graph id='%s'><xgmml><graph>", thisGraphNameStr.s.str());
+                reply.appendf("<Graph id='%s'><xgmml>", thisGraphNameStr.s.str());
                 Owned<IPropertyTree> graphXgmml = graphs->query().getXGMMLTree(false);
                 getGraphStats(reply, *graphXgmml);
-                reply.append("</graph></xgmml></Graph>");
+                reply.append("</xgmml></Graph>");
             }
         }
     }