TMaddox commented on a change in pull request #1234: URL: https://github.com/apache/systemds/pull/1234#discussion_r619851992
########## File path: src/main/python/systemds/script_building/script.py ########## @@ -178,24 +178,30 @@ def _dfs_dag_nodes(self, dag_node: VALID_INPUT_TYPES) -> str: :param dag_node: current DAG node :return: the variable name the current DAG node operation created """ + if not isinstance(dag_node, DAGNode): if isinstance(dag_node, bool): return 'TRUE' if dag_node else 'FALSE' return str(dag_node) - # for each node do the dfs operation and save the variable names in `input_var_names` + + if dag_node.dml_name != "": + return dag_node.dml_name Review comment: :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org