1

我收到错误L: 3 | P: 1 | PRS | Found unparsable section:

这是我调用 dbt_utils 提供的 date_spine 宏的时候。有没有人遇到过这个问题,在 sqlfluff 的宏定义中设置什么期望值?

在 dbt 中的 sqlfluff 文件中定义宏见如下:

date_spine = {% macro date_spine(datepart, start_date, end_date) %}'HERE'{% endmacro %}

4

1 回答 1

2

您不需要设置date_spine =部分,只需将宏定义为:

{% macro date_spine(datepart, start_date, end_date) %}'HERE'{% endmacro %}
于 2020-09-21T19:37:42.507 回答