Bläddra i källkod

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 11 år sedan
förälder
incheckning
55f13b9047
1 ändrade filer med 1 tillägg och 1 borttagningar
  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);