Explorar el Código

HPCC-11310 Fix signature of addNamedQuery() in workunit.hpp

Snapshot parameter was added to the method in the cpp but not
the header. Only used externally by eclserver.

Signed-off-by: Anthony Fishbeck <anthony.fishbeck@lexisnexis.com>
Anthony Fishbeck hace 11 años
padre
commit
55f13b9047
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      common/workunit/workunit.hpp

+ 1 - 1
common/workunit/workunit.hpp

@@ -1239,7 +1239,7 @@ enum WUQueryActivationOptions
 
 extern WORKUNIT_API int calcPriorityValue(const IPropertyTree * p);  // Calls to this should really go through the workunit interface.
 
-extern WORKUNIT_API IPropertyTree * addNamedQuery(IPropertyTree * queryRegistry, const char * name, const char * wuid, const char * dll, bool library, const char *userid);       // result not linked
+extern WORKUNIT_API IPropertyTree * addNamedQuery(IPropertyTree * queryRegistry, const char * name, const char * wuid, const char * dll, bool library, const char *userid, const char *snapshot);       // result not linked
 extern WORKUNIT_API void removeNamedQuery(IPropertyTree * queryRegistry, const char * id);
 extern WORKUNIT_API void removeWuidFromNamedQueries(IPropertyTree * queryRegistry, const char * wuid);
 extern WORKUNIT_API void removeDllFromNamedQueries(IPropertyTree * queryRegistry, const char * dll);