Skip to content

Commit

Permalink
prophet doc
Browse files Browse the repository at this point in the history
  • Loading branch information
paul.marcombes committed Nov 22, 2024
1 parent 2707f4a commit 9b921a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigfun/templates/bigfunction.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ hide:
);
{% endif %}
{% if type == 'procedure' %}call{% elif type == 'table_function' %}select * from{% else %}select{% endif %} {{ project }}.{{ dataset }}.{{ name }}({% for argument in example.arguments %}{{ argument | replace('{BIGFUNCTIONS_DATASET}', project + '.' + dataset ) | replace('\n', '\n ') }}{% if not loop.last %}, {% endif %}{% endfor %}){% if type == 'procedure' %};{% elif 'output' in bigfunction and type != 'table_function' %} as {{ output.name }}{% endif %}
{%- if example.with_clause is defined or example.temp_table is defined %}
{%- if (example.with_clause is defined or example.temp_table is defined) and type != 'table_function' %}
from sample_data
{% endif %}
{% if type == 'procedure' and template %}select html from bigfunction_result;{% endif %}
Expand Down

0 comments on commit 9b921a6

Please sign in to comment.