external-models/macros/cli_query.sql
2024-05-13 12:45:17 -07:00

12 lines
329 B
SQL

-- macros/print_query_results.sql
{% macro execute_and_print_query() %}
{% set results = run_query("select distinct(model) from bronze.defillama_historical_backfill_list") %}
{% if execute %}
{% for row in results %}
{{ log(row, info=True) }}
{% endfor %}
{% endif %}
{% endmacro %}