Some additions to previous patch + downmerge from 1.1

The merge was done manually copying relevant code changes from 1.1.
In particulary merged the patch for CONCPP-94
Also many changes, that fix real possible issues, that was also present in 1.0 and found while
working on 1.1. For example(but not limited to), there were many cases of incorrect
find_first_of std::string method, where find had to be really used.
This commit is contained in:
Lawrin Novitsky
2022-05-08 23:18:26 +02:00
parent aec36978c3
commit 014f4ac0be
101 changed files with 862 additions and 4496 deletions

View File

@ -46,12 +46,12 @@ int main(int argc, char** argv)
, "dbSchema"
, NULL};
Properties defaultStringValues;
TestProperties defaultStringValues;
defaultStringValues.insert(Properties::value_type("dbUrl", HOST_ENV_OR_DEFAULT));
defaultStringValues.insert(Properties::value_type("dbUser", UID_ENV_OR_DEFAULT));
defaultStringValues.insert(Properties::value_type("dbPasswd", PASSWD_ENV_OR_DEFAULT));
defaultStringValues.insert(Properties::value_type("dbSchema", SCHEMA_ENV_OR_DEFAULT));
defaultStringValues.insert(TestProperties::value_type("dbUrl", HOST_ENV_OR_DEFAULT));
defaultStringValues.insert(TestProperties::value_type("dbUser", UID_ENV_OR_DEFAULT));
defaultStringValues.insert(TestProperties::value_type("dbPasswd", PASSWD_ENV_OR_DEFAULT));
defaultStringValues.insert(TestProperties::value_type("dbSchema", SCHEMA_ENV_OR_DEFAULT));
std::map<String, bool> defaultBoolValues;