Skip to content

Commit

Permalink
HPCC-31119 Fix problem loading roxie queries compiled with 9.4.20-24
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Jan 12, 2024
1 parent 09e4f8a commit 3244204
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rtl/eclrtl/eclhelper_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,7 @@ const char * CThorSoapActionArg::getXpathHintsXml() { return nullptr;}
const char * CThorSoapActionArg::getRequestHeader() { return nullptr; }
const char * CThorSoapActionArg::getRequestFooter() { return nullptr; }
unsigned CThorSoapActionArg::getPersistMaxRequests() { return 0; }
unsigned CThorSoapActionArg::getPersistPoolSize() { return 0; }

//CThorSoapCallArg

Expand All @@ -646,6 +647,7 @@ const char * CThorSoapCallArg::getXpathHintsXml() { return nullptr; }
const char * CThorSoapCallArg::getRequestHeader() { return nullptr; }
const char * CThorSoapCallArg::getRequestFooter() { return nullptr; }
unsigned CThorSoapCallArg::getPersistMaxRequests() { return 0; }
unsigned CThorSoapCallArg::getPersistPoolSize() { return 0; }

size32_t CThorSoapCallArg::onFailTransform(ARowBuilder & rowBuilder, const void * left, IException * e) { return 0; }
void CThorSoapCallArg::getLogText(size32_t & lenText, char * & text, const void * left) { lenText =0; text = NULL; }
Expand Down
2 changes: 2 additions & 0 deletions rtl/include/eclhelper_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,7 @@ class ECLRTL_API CThorSoapActionArg : public CThorSinkArgOf<IHThorSoapActionArg>
virtual const char * getRequestHeader() override;
virtual const char * getRequestFooter() override;
virtual unsigned getPersistMaxRequests() override;
unsigned getPersistPoolSize(); // Included for backward compatibility to prevent linking problems
};

class ECLRTL_API CThorSoapCallArg : public CThorArgOf<IHThorSoapCallArg>
Expand Down Expand Up @@ -854,6 +855,7 @@ class ECLRTL_API CThorSoapCallArg : public CThorArgOf<IHThorSoapCallArg>
virtual const char * getRequestHeader() override;
virtual const char * getRequestFooter() override;
virtual unsigned getPersistMaxRequests() override;
unsigned getPersistPoolSize(); // Included for backward compatibility to prevent linking problems
};

typedef CThorSoapCallArg CThorHttpCallArg;
Expand Down

0 comments on commit 3244204

Please sign in to comment.