You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When callService that is attached to an application, host and contextroot of the corresponding application is used (if country env of the application does not exist on the test case application, search is also made on linked environments).
//SQL_CALC_FOUND_ROWS allows to retrieve the total number of columns by disrearding the limit clauses that
488
+
//were applied -- used for pagination p
489
+
query.append("SELECT SQL_CALC_FOUND_ROWS cea.* FROM countryenvironmentparameters cea");
490
+
query.append(" JOIN application app on app.Application = cea.Application and app.`System` = cea.`System` ");
491
+
query.append(" JOIN (SELECT systemLink , CountryLink , EnvironmentLink from countryenvlink where `system` = ? and Country = ? and Environment = ? ) as lnk ");
492
+
query.append(" where cea.`system` = lnk.systemLink and cea.`Country` = lnk.CountryLink and cea.`Environment` = lnk.EnvironmentLink ; ");
if (objectList.size() >= MAX_ROW_SELECTED) { // Result of SQl was limited by MAX_ROW_SELECTED constrain. That means that we may miss some lines in the resultList.
privateStringcurrentApplication; // Allow to move the application environment context in case of a call to a service.
133
+
privateCountryEnvironmentParameterscountryEnvApplicationParam; // Main value from application of the testcase.
134
+
privateHashMap<String, CountryEnvironmentParameters> countryEnvApplicationParams; // All applications values from all application existing on the same env/system and linked to main environement of the testcase.
133
135
privateInvariantenvironmentObj;
134
136
privateInvariantenvironmentDataObj;
135
137
privateInvariantpriorityObj;
@@ -301,6 +303,20 @@ public void addSecrets(List<String> secrets) {
0 commit comments