Hello, when I try to execute datafrom run --dry-run, all my assertions fail with the same error:
BigQuery error: Cannot convert undefined or null to object.
Example of an assertion
create or replace view project.dataform_assertions.table_name_assertions_uniqueKey_0 as
SELECT
*
FROM (
SELECT
row_id, col1,
COUNT(1) AS index_row_count
FROM TABLE_NAME
GROUP BY row_id, col1
) AS data
WHERE index_row_count > 1
Hello, when I try to execute
datafrom run --dry-run
, all my assertions fail with the same error: BigQuery error: Cannot convert undefined or null to object. Example of an assertion create or replace viewproject.dataform_assertions.table_name_assertions_uniqueKey_0
as