def _get_load_analysis_commands(hpo_id): raw_commands = sql_wrangle.get_commands(ACHILLES_DML_SQL_PATH) commands = map(lambda cmd: sql_wrangle.qualify_tables(cmd, hpo_id), raw_commands) for command in commands: if END_OF_IMPORTING_LOOKUP_MARKER in command.lower(): break yield command
def _get_heel_commands(hpo_id): raw_commands = _extract_sql_queries(ACHILLES_HEEL_DML) commands = map(lambda cmd: sql_wrangle.qualify_tables(cmd, hpo_id), raw_commands) for command in commands: yield command