@@ -691,11 +691,11 @@ class CDali : public IDali, public CUnknown
691
691
return localfiles.size ();
692
692
}
693
693
694
- IWorkunit* Submit (const CString &cluster, const CString & queue, WUAction action, const CString & attrQualifiedLabel, const CString & ecl, const CString & path, const CString & label, int resultLimit, const CString & debugSettings, bool archive, int maxRunTime, bool debug)
694
+ IWorkunit* Submit (const CString &cluster, const CString & queue, WUAction action, const CString & attrQualifiedLabel, const CString & ecl, const CString & path, const CString & label, int resultLimit, const CString & debugSettings, bool archive, int maxRunTime, bool debug, bool rawECL )
695
695
{
696
696
CComInitialize com;
697
697
StlLinked<IWorkunit> resultWu;
698
- SubmitEcl (cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, false , maxRunTime, debug);
698
+ SubmitEcl (cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, false , maxRunTime, debug, rawECL );
699
699
return resultWu.get ();
700
700
}
701
701
@@ -1109,7 +1109,7 @@ class CDali : public IDali, public CUnknown
1109
1109
{
1110
1110
CComInitialize com;
1111
1111
bool retVal = false ;
1112
- if (SubmitEcl (cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, noCommonPrivateAttributes, maxRunTime, debug))
1112
+ if (SubmitEcl (cluster, queue, action, attrQualifiedLabel, ecl, path, label, resultLimit, resultWu, debugSettings, archive, noCommonPrivateAttributes, maxRunTime, debug, false ))
1113
1113
{
1114
1114
retVal = BlockUntilComplete (m_config, resultWu->GetWuid ());
1115
1115
@@ -1221,12 +1221,14 @@ class CDali : public IDali, public CUnknown
1221
1221
}
1222
1222
}
1223
1223
1224
- bool SubmitEcl (const CString &cluster, const CString & queue, WUAction _action, const CString & attrQualifiedLabel, const CString & _ecl, const CString & path, const CString label, int resultLimit, StlLinked<IWorkunit> &resultWu, const CString & debugString, bool archive, bool noCommonPrivateAttributes, int maxRunTime, bool debug)
1224
+ bool SubmitEcl (const CString &cluster, const CString & queue, WUAction _action, const CString & attrQualifiedLabel, const CString & _ecl, const CString & path, const CString label, int resultLimit, StlLinked<IWorkunit> &resultWu, const CString & debugString, bool archive, bool noCommonPrivateAttributes, int maxRunTime, bool debug, bool rawECL )
1225
1225
{
1226
1226
bool isXml = false ;
1227
1227
bool isArchive = false ;
1228
1228
CString ecl = _ecl;
1229
1229
std::_tstring queryName;
1230
+
1231
+ if (!rawECL)
1230
1232
{// ECL or XML
1231
1233
CComInitialize com;
1232
1234
CComPtr<ISAXXMLReader> pRdr;
@@ -1248,7 +1250,7 @@ class CDali : public IDali, public CUnknown
1248
1250
}
1249
1251
}
1250
1252
1251
- if (!isXml && !boost::algorithm::iequals (static_cast <const TCHAR *>(cluster), _T (" Local" )))
1253
+ if (!rawECL && ! isXml && !boost::algorithm::iequals (static_cast <const TCHAR *>(cluster), _T (" Local" )))
1252
1254
{
1253
1255
CComPtr<IEclCC> eclcc = CreateIEclCC ();
1254
1256
if (_action != WUActionExecuteExisting && eclcc)
0 commit comments