This commit is contained in:
Grzegorz Michalski
2026-03-02 09:47:35 +01:00
commit 2c225d68ac
715 changed files with 130067 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{% macro get_main_task_name(source_model_name) %}
{# return({{ source_model_name | split('__')[-1] }}) #}
{% set ret = "substr('" ~ source_model_name ~ "', 1, instr('" ~ source_model_name ~ "', '_', -1) -1)" %}
{{ return(ret) }}
{% endmacro %}