We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to run the list_schemas macro from a BigQuery dbt project, you get the following error
list_schemas
list_schemas() missing 1 required positional argument: 'database'
Create a test macro in a BigQuery dbt project that invokes list_schema like this one:
{%- macro test() -%} {%- do list_schemas(target.project) -%} {%- endmacro -%}
Run the macro with dbt run-operation test to see the error
dbt run-operation test
Macro should work without any compilation error.
Which database are you using dbt with?
The output of dbt --version:
dbt --version
0.16.1
The operating system you're using: macOS Catalina (10.15.4)
The output of python --version: 3.8.1
python --version
N/A
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
When attempting to run the
list_schemas
macro from a BigQuery dbt project, you get the following errorSteps To Reproduce
Create a test macro in a BigQuery dbt project that invokes list_schema like this one:
Run the macro with
dbt run-operation test
to see the errorExpected behavior
Macro should work without any compilation error.
System information
Which database are you using dbt with?
The output of
dbt --version
:The operating system you're using:
macOS Catalina (10.15.4)
The output of
python --version
:3.8.1
Additional context
N/A
The text was updated successfully, but these errors were encountered: