diff -r d5e80f15d1f7 -r 6ee7a9e311e9 src/CLIParser.h --- a/src/CLIParser.h Tue May 07 01:03:21 2019 +0200 +++ b/src/CLIParser.h Sun May 26 19:46:47 2019 +0200 @@ -60,6 +60,7 @@ static const string_t OPTION_OUTPUT_ATTRIBUTE; static const string_t OPTION_INPUT_ATTRIBUTES_APPEND; static const string_t OPTION_INPUT_ATTRIBUTES_PREPEND; + static const string_t OPTION_DEBUG_VARIABLE_MAPPING; static const string_t OPTION_BEFORE_RECORDS; static const string_t OPTION_AFTER_RECORDS; static const string_t OPTION_FOR_EACH; @@ -83,6 +84,7 @@ else if (option == OPTION_DROP) currentRelation.drop = true; else if (option == OPTION_INPUT_ATTRIBUTES_APPEND) currentRelation.inputAttributesAppend = true; else if (option == OPTION_INPUT_ATTRIBUTES_PREPEND) currentRelation.inputAttributesPrepend = true; + else if (option == OPTION_DEBUG_VARIABLE_MAPPING) currentRelation.debugVariableMapping = true; else if (option == OPTION_RELATION) { addRelation(c, currentRelation); // previous relation currentRelation.relation = readNext(arguments, i); @@ -113,6 +115,7 @@ const string_t CLIParser::OPTION_OUTPUT_ATTRIBUTE = L"--output-attribute"; const string_t CLIParser::OPTION_INPUT_ATTRIBUTES_APPEND = L"--input-attributes-append"; const string_t CLIParser::OPTION_INPUT_ATTRIBUTES_PREPEND = L"--input-attributes-prepend"; +const string_t CLIParser::OPTION_DEBUG_VARIABLE_MAPPING = L"--debug-variable-mapping"; const string_t CLIParser::OPTION_BEFORE_RECORDS = L"--before-records"; const string_t CLIParser::OPTION_AFTER_RECORDS = L"--after-records"; const string_t CLIParser::OPTION_FOR_EACH = L"--for-each";