fsc-utils/macros/create_streamline_udfs.sql

17 lines
554 B
MySQL
Raw Permalink Normal View History

{% macro create_streamline_udfs() %}
{% if var("UPDATE_UDFS_AND_SPS") %}
2024-09-25 20:33:53 +00:00
{% do run_query("CREATE SCHEMA IF NOT EXISTS streamline") %}
{{ create_udf_bulk_rest_api_v2() }}
2024-06-26 12:31:19 +00:00
{% endif %}
{% endmacro %}
{% macro create_evm_streamline_udfs() %}
{% if var("UPDATE_UDFS_AND_SPS") %}
2024-09-25 20:33:53 +00:00
{% do run_query("CREATE SCHEMA IF NOT EXISTS streamline") %}
{{ create_udf_bulk_rest_api_v2() }}
{{ create_udf_bulk_decode_logs() }}
{{ create_udf_bulk_decode_traces() }}
2024-06-26 12:31:19 +00:00
{% endif %}
2024-09-25 20:33:53 +00:00
{% endmacro %}