|
@@ -379,6 +379,8 @@ bool EclGraphElement::alreadyUpToDate(IAgentContext & agent)
|
|
|
helper->getUpdateCRCs(eclCRC, totalCRC);
|
|
|
break;
|
|
|
}
|
|
|
+ default:
|
|
|
+ UNIMPLEMENTED;
|
|
|
}
|
|
|
|
|
|
Owned<ILocalOrDistributedFile> ldFile = agent.resolveLFN(filename.get(), "Read", true, false, false);
|
|
@@ -776,7 +778,7 @@ EclSubGraph::EclSubGraph(IAgentContext & _agent, EclGraph & _parent, EclSubGraph
|
|
|
isChildGraph = false;
|
|
|
}
|
|
|
|
|
|
-void EclSubGraph::createFromXGMML(EclGraph * graph, ILoadedDllEntry * dll, IPropertyTree * node, unsigned * subGraphSeqNo, EclSubGraph * resultsGraph)
|
|
|
+void EclSubGraph::createFromXGMML(EclGraph * graph, ILoadedDllEntry * dll, IPropertyTree * node, unsigned & subGraphSeqNo, EclSubGraph * resultsGraph)
|
|
|
{
|
|
|
xgmml.set(node->queryPropTree("att/graph"));
|
|
|
|
|
@@ -803,9 +805,9 @@ void EclSubGraph::createFromXGMML(EclGraph * graph, ILoadedDllEntry * dll, IProp
|
|
|
{
|
|
|
Owned<IProbeManager> childProbe;
|
|
|
if (probeManager)
|
|
|
- childProbe.setown(probeManager->startChildGraph(*subGraphSeqNo, NULL));
|
|
|
+ childProbe.setown(probeManager->startChildGraph(subGraphSeqNo, NULL));
|
|
|
|
|
|
- Owned<EclSubGraph> subgraph = new EclSubGraph(*agent, *graph, this, *subGraphSeqNo++, probeEnabled, debugContext, probeManager);
|
|
|
+ Owned<EclSubGraph> subgraph = new EclSubGraph(*agent, *graph, this, subGraphSeqNo++, probeEnabled, debugContext, probeManager);
|
|
|
subgraph->createFromXGMML(graph, dll, &cur, subGraphSeqNo, resultsGraph);
|
|
|
if (probeManager)
|
|
|
probeManager->endChildGraph(childProbe, NULL);
|
|
@@ -1129,7 +1131,7 @@ void EclGraph::createFromXGMML(ILoadedDllEntry * dll, IPropertyTree * xgmml, boo
|
|
|
childProbe.setown(probeManager->startChildGraph(subGraphSeqNo, NULL));
|
|
|
|
|
|
Owned<EclSubGraph> subgraph = new EclSubGraph(*agent, *this, NULL, subGraphSeqNo++, enableProbe, debugContext, probeManager);
|
|
|
- subgraph->createFromXGMML(this, dll, &iter->query(), &subGraphSeqNo, NULL);
|
|
|
+ subgraph->createFromXGMML(this, dll, &iter->query(), subGraphSeqNo, NULL);
|
|
|
if (probeManager)
|
|
|
probeManager->endChildGraph(childProbe, NULL);
|
|
|
|