Skip to content

Commit

Permalink
solving issue #77
Browse files Browse the repository at this point in the history
  • Loading branch information
dachafra committed Feb 15, 2024
1 parent 7a03832 commit 5a9be58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yatter/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def add_internal_function(mapping_id, mapping_data, functions):
def transform_function(mapping_id, function_value, functions):
global local_id
function_return = None
if YARRRML_JOIN in function_value[YARRRML_FUNCTION]:
if function_value[YARRRML_FUNCTION].replace(" ","").startswith(YARRRML_JOIN+"("):
function_return = generate_extended_join(function_value[YARRRML_FUNCTION])
elif function_value[YARRRML_FUNCTION] != YARRRML_EQUAL:
function_id = "function_" + mapping_id
Expand Down

0 comments on commit 5a9be58

Please sign in to comment.