2024-06-19 01:14:51 +00:00
|
|
|
{% 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") %}
|
|
|
|
|
|
2024-06-19 01:14:51 +00:00
|
|
|
{{ create_udf_bulk_rest_api_v2() }}
|
2024-06-26 12:31:19 +00:00
|
|
|
{% endif %}
|
2024-06-19 01:14:51 +00:00
|
|
|
{% 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") %}
|
|
|
|
|
|
2024-06-19 01:14:51 +00:00
|
|
|
{{ create_udf_bulk_rest_api_v2() }}
|
|
|
|
|
{{ create_udf_bulk_decode_logs() }}
|
2024-08-28 21:53:18 +00:00
|
|
|
{{ create_udf_bulk_decode_traces() }}
|
2024-06-26 12:31:19 +00:00
|
|
|
{% endif %}
|
2024-09-25 20:33:53 +00:00
|
|
|
{% endmacro %}
|