Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
858 views
in Technique[技术] by (71.8m points)

jinja2 - dbt run-operation to call macros that have non-string arguments

Say that I want to drop the ajs schema as a clean up activity on our dev db, not as part of a regular dbt workflow

dbt run-operation drop_schema --args '{relation: ajs}'

perhaps I need to wrap drop_schema into another macro drop_schema_str(schema_str) where schema_str is the string of the schema and it is used to make a Relation object before invoking drop_schema()?

question from:https://stackoverflow.com/questions/65912839/dbt-run-operation-to-call-macros-that-have-non-string-arguments

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

create this macro

{% macro drop_schema_str(schema) %}
  {% set relation = api.Relation.create(database=target.database, schema=schema) %}
  {% do drop_schema(relation) %}
{% endmacro %}

then invoke it with

dbt run-operation drop_schema_str --args '{schema: ajs}'   

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...