You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
asThe text was updated successfully, but these errors were encountered: