Skip to content

Commit

Permalink
Improvements to allow options to be passed in to the query
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Feb 27, 2024
1 parent d6acd43 commit b22432c
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions testing/regress/ecl/soaptext1.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,18 @@
import ^ as root;

//Simplified configuration
roxieIP := '.' : STORED('TargetIP');
espIP := '.' : STORED('TargetIP');
string roxieIP := '.' : STORED('roxieIP');
string espIP := '.' : STORED('espIP');
boolean defaultEncryptConnection := false : stored('encryptConnection');
boolean defaultPersistConnection := false : stored('persistConnection');
boolean defaultCallDirect := false : stored('callDirect');
boolean defaultCallViaEsp := false : stored('callViaEsp');

//Simplified call options - doesn't provide all combinations that should be tested eventually
boolean encryptConnection := #IFDEFINED(root.encryptConnection, false);
boolean persistConnection := #IFDEFINED(root.persistConnection, false);
boolean callDirect := #IFDEFINED(root.callDirect, false);
boolean callViaEsp := #IFDEFINED(root.callViaEsp, false);
boolean encryptConnection := #IFDEFINED(root.encryptConnection, defaultEncryptConnection);
boolean persistConnection := #IFDEFINED(root.persistConnection, defaultPersistConnection);
boolean callDirect := #IFDEFINED(root.callDirect, defaultCallDirect);
boolean callViaEsp := #IFDEFINED(root.callViaEsp, defaultCallViaEsp);

//--- end of version configuration ---

Expand Down

0 comments on commit b22432c

Please sign in to comment.